Jelle Zijlstra
cf6c563ce1
codecs: merge 2 and 3 stubs ( #960 )
2017-03-10 15:50:14 -08:00
Ivan Levkivskyi
bd5b33f3b1
Fix frozenset ( #979 )
2017-03-10 13:59:32 -08:00
Sebastian Meßmer
85866fe1b9
Fix unittest/mock.pyi ( #973 )
...
* Fix unittest/mock.pyi
Add a lot of missing types
* Fix formatting
* Make two and from_kall bool
* Further style fixes
* style fixes
2017-03-08 06:50:28 -08:00
Dominik Miedziński
4f51a4f2fc
Improve ABCMeta.register signature ( #962 )
...
* Improve ABCMeta.register signature
* Fix ABCMeta.register return type for Python 3.3+
2017-03-07 16:42:06 -08:00
Hong Minhee
aa54fc1958
Add missing attribs to urllib.response.addinfourl ( #968 )
2017-03-07 16:38:52 -08:00
David Euresti
a1e74b9261
Add stub for filecmp to 2and3 ( #955 )
...
* Add stub for filecmp to 2and3
* Fix spacing
* Moar spacing
* Use _SupportsBool
* Code review
2017-03-07 16:36:25 -08:00
David Euresti
63590301f7
Add stubs for py_compile. ( #954 )
...
* Add stubs for py_compile.
* Correct Text
2017-03-07 16:35:45 -08:00
rchen152
f34c550f04
Correct some return types in itertools.pyi from Iterable to Iterator. ( #947 )
...
* Fix a few return types in stdlib/2/inspect.pyi.
* Rename _FrameRecord to _FrameInfo
* Correct some return types in itertools.pyi from Iterable to Iterator.
2017-03-07 06:42:50 -08:00
Sebastian Meßmer
6ffaadbd67
Fix string.pyi ( #971 )
...
Add missing types for two arguments
2017-03-06 08:08:36 -08:00
Sebastian Meßmer
afde2fd234
Fix type stubs for logging ( #972 )
...
Add missing type for two parameters
2017-03-06 08:05:42 -08:00
Sebastian Meßmer
ba82ac08ed
Fix type stubs in type.pyi ( #970 )
...
Mypy recognized the type hints as parameter names. This fixes that.
2017-03-06 08:04:51 -08:00
Michael Walter
58efa1fe55
Update json.pyi ( #957 )
...
According to https://docs.python.org/3/library/json.html#json.loads , the s parameter can be "a str, bytes or bytearray instance".
2017-02-27 17:51:41 +00:00
lincolnq
59789b8a3e
Improve types for xml.etree.ElementTree ( #930 )
...
* Improve types for xml.etree.ElementTree
Update signatures to reflect the following peculiarities of the
ElementTree library:
- The elementtree library accepts unicode or bytes for most xml values
in python2, and coerces everywhere -- but in python3, only str makes
sense.
- In python 2, the library produces str or unicode instances
unpredictably, depending on whether the xml is decodeable as ascii or
not. In python 3, it always produces str instances.
- The parser functions accept unicode or bytes in 2 and 3 -- again, will
coerce individual instances so heterogeneous lists are ok.
- In python 3, the tostring functions produce bytes or str, depending on
the value of the 'encoding' parameter.
* improve docs
* Improve ElementFactory type by specifying dict of 2nd arg
2017-02-22 20:43:09 -08:00
David Euresti
91ff50ad7a
Fix AbstractDigestAuthHandler to have correct types.
2017-02-22 20:29:17 -08:00
David Euresti
70e39d9ad2
Fix and unify type of socket.getaddrinfo
2017-02-22 20:24:47 -08:00
David Euresti
da11ecf773
Add missing __init__ and isclosed to http.client.HTTPResponse
2017-02-22 20:18:15 -08:00
David Euresti
f7aedb4d21
Fix type annotations in fnmatch for Python 2.
...
Make some AnyStr others _EitherStr.
2017-02-22 20:15:35 -08:00
David Euresti
e3fb935ca4
Move opcode to 2and3 ( #938 )
...
* Move opcode to 2and3
* Fix python3 versions
* Fix tests
* Bring Dict back
2017-02-21 14:27:34 -08:00
David Euresti
1260d41cd1
Fix type of IO.writelines. ( #949 )
...
This lets you use generators to writelines
2017-02-21 14:25:00 -08:00
Andrey Vlasovskikh
295788b672
Missing special attributes of class instances inherited from object ( #943 )
...
* Missing special attributes of class instances inherited from object
* object.__reduce__ returns a tuple
It's up to its inheritors to return either a tuple or a string.
2017-02-20 11:50:14 -08:00
David Euresti
dbea48fc7a
Make 2nd argument to ModuleType an optional kwarg ( #941 )
2017-02-20 11:10:59 -08:00
Andrey Vlasovskikh
39d89ef233
Class 'property' inherits from 'object' for PY2
2017-02-20 11:04:27 -08:00
Andrey Vlasovskikh
7212f23f7b
Added missing 'property' attributes
2017-02-20 11:04:27 -08:00
Andrey Vlasovskikh
43c1369901
More precise type for 'slice' constructor
...
start and stop arguments are required even though they can be None.
2017-02-20 11:03:30 -08:00
Richard Hansen
55d4c08a8e
Use BaseException for Future.exception() and .set_exception(). ( #935 )
...
The concurrent.futures.Future class's set_exception() method might be
called with a BaseException that is not an Exception, so change
set_exception()'s parameter type from Exception to BaseException. The
exception set via set_exception() is returned by exception(), so
change exception()'s return type from Exception to BaseException.
2017-02-15 08:19:49 -08:00
Ivan Levkivskyi
22c0353498
Add missing imports from typing ( #933 )
2017-02-14 10:59:00 -08:00
Matthias Kramm
f869a5d351
fix bugs in stdlib/2/csv.py ( #932 )
2017-02-13 20:21:19 -08:00
Jelle Zijlstra
a778704b30
add Counter, Deque, ChainMap ( #928 )
2017-02-11 10:52:09 -08:00
Jelle Zijlstra
e80b25d1be
allow instantiating ChainMap ( #929 )
...
A previous PR led mypy to refuse to instantiate ChainMap,
because it had unimplemented abstract methods.
This PR adds the abstract methods to the stub,
which is enough to persuade mypy to allow instantiating
ChainMap.
2017-02-11 10:10:13 -08:00
5j9
3973f5851a
Define __getitem__ for Match objects of Python 3.6 ( #925 )
...
In Python 3.6 __getitem__ was added as a new method for match objects.
m[g] is identical to m.group(g).
2017-02-09 15:23:52 -08:00
5j9
f192b8c784
Update count, (r)find, and (r)index type hints for bytes and bytearray ( #923 )
...
The above methods have changed in version 3.3 to also accept an integer in
the range 0 to 255 as the subsequence.
Fixes python/mypy#2831
2017-02-08 15:21:41 -08:00
Tom Manderson
65b45282f4
Update python 2 UUID stubs ( #922 )
2017-02-08 15:19:56 -08:00
Matthias Kramm
7a211921dd
asctime/strftime take a tuple, too ( #921 )
2017-02-07 16:22:47 -08:00
Sunghyun Hwang
28f3fde09f
improve HTTPStatus type definition ( #920 )
2017-02-07 10:39:44 -08:00
David Euresti
db84eb7844
Fix hashlib to accept multiple data types ( #918 )
2017-02-06 17:24:48 -08:00
David Euresti
6eca1a04da
Some ssl fixes ( #919 )
...
Fix return of wrap_socket.
Add read, write, pending to SSLSocket
Fix argument to socket.setdefaulttimeout
2017-02-06 17:23:22 -08:00
Jelle Zijlstra
06074e1e02
expose asyncio.open_unix_connection if it exists ( #879 )
...
Also fix the one other place where hasattr() is used (which PEP 484 doesn't support).
2017-02-06 11:41:11 -08:00
Tomasz Elendt
f9d6218ab7
Fix definitions of various AbstractEventLoop methods ( #902 )
2017-02-06 10:25:40 -08:00
Matt Kimball
31d4a4277b
Added 'shutil' API changes between 3.3 and 3.5 ( #915 )
...
As of Python 3.3, copymode, copystat, copy and copy2 take an
optional argument, 'follow_symlinks'.
As of Python 3.3, copytree and move return the destination.
As of Python 3.5, move takes an optional copy function.
As of Python 3.3, disk_usage, chown, which and get_terminal_size
were added.
2017-02-06 10:18:27 -08:00
rchen152
c9e992ea8d
Fix a few return types in stdlib/2/inspect.pyi. ( #916 )
2017-02-06 08:19:14 -08:00
Mike Patek
c760a4e949
Make OrderedDict inherit from Reversible ( #912 )
...
Fixes #904
2017-02-01 09:23:43 -08:00
Matthias Kramm
b240b241f0
add stdlib/2/repr.pyi ( #910 )
2017-01-31 14:56:48 -08:00
Matthias Kramm
40754e312f
fix import error in logging/__init__.pyi
2017-01-31 14:54:18 -08:00
Matthias Kramm
6855a20a51
add TestCase.failureException ( #907 )
2017-01-31 14:37:52 -08:00
Matthias Kramm
295ffbe4f3
improve inspect.pyi ( #908 )
2017-01-31 14:34:18 -08:00
Matthias Kramm
293dcfa661
fix socket.sendto ( #909 )
2017-01-31 14:32:15 -08:00
Tomasz Elendt
b8df3de81a
Coroutine functions should return Generator type ( #903 )
2017-01-31 14:28:07 -08:00
Matthias Kramm
987f465b4f
add missing import
2017-01-31 09:25:45 -08:00
Eklavya Sharma
bc092ded69
pstats: Add default value for kwarg ( #905 )
...
According to python library docs, pstats.Stats.__init__ has a
keyword argument `stream' whose default value is `sys.stdout`.
2017-01-31 11:42:14 +00:00
Guido van Rossum
0e9ad51882
Declare asyncio.wait() as taking an Iterable rather than a List. ( #901 )
2017-01-30 13:55:39 -08:00