summaryrefslogtreecommitdiff
path: root/Lib/typing.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in typing.py module docstring (GH-9014)Miss Islington (bot)2018-09-011-1/+1
| | | | | | "explicitelly" → "explicitly" (cherry picked from commit 5265b3a98b376684e361b62d0728483b26f493f2) Co-authored-by: Tim McNamara <code@timmcnamara.co.nz>
* Fix typo in TypeVar docstring (GH-8142)Miss Islington (bot)2018-07-071-1/+1
| | | | | | "can be used do declare" → "can be used to declare" (cherry picked from commit 86bfed372b81b8111a56a3311d537566d5df7f61) Co-authored-by: João D. Ferreira <jotomicron@gmail.com>
* bpo-33652: Remove __getstate__ and __setstate__ methods in typing. (GH-7144)Miss Islington (bot)2018-05-281-21/+0
| | | | | (cherry picked from commit 97b523db7c79c18c48516fba9410014d9896abc4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-33652: Improve pickle support in the typing module. (GH-7123)Miss Islington (bot)2018-05-261-8/+19
| | | | | | | Pickles of type variables and subscripted generics are now future-proof and compatible with older Python versions. (cherry picked from commit 09f3221fbbf72692308149054e4f7668b08b22eb) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* Reverse the meaning of is_argument when used for type check (GH-7039)Miss Islington (bot)2018-05-221-4/+4
| | | | | (cherry picked from commit 0e61dffdbaf39ac5916ce431ff3b37db8faa1d2d) Co-authored-by: Nina Zakharenko <nzakharenko@gmail.com>
* bpo-28556: Don't simplify unions at runtime (GH-6841) (GH-6979)Miss Islington (bot)2018-05-181-29/+3
| | | | | (cherry picked from commit f65e31fee3b55dfb6ed5398179d5c5d6b502dee5) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* Fix ClassVar as string fails when getting type hints (GH-6824) (#6912)Miss Islington (bot)2018-05-161-6/+13
| | | | | (cherry picked from commit 2d2d3b170bdebc085900bfa2a3bc81b5d132d0a8) Co-authored-by: Nina Zakharenko <nzakharenko@gmail.com>
* Fix a bug in Generic.__new__ (GH-6758)Miss Islington (bot)2018-05-101-1/+1
| | | | | (cherry picked from commit b551e9f0ff25018a5606465003e2c51c04f693a3) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* bpo-28556: Minor fixes for typing module (GH-6732)Miss Islington (bot)2018-05-081-2/+8
| | | | | | This also fixes https://bugs.python.org/issue33420 (cherry picked from commit 43d12a6bd82bd09ac189069fe1eb40cdbc10a58c) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* Spelling fixes to docs, docstrings, and comments (GH-6374)Miss Islington (bot)2018-04-201-1/+1
| | | | | (cherry picked from commit 61f82e0e337f971da57f8f513abfe693edf95aa5) Co-authored-by: Ville Skyttä <ville.skytta@iki.fi>
* bpo-32873: Remove a name hack for generic aliases in typing module (GH-6376)Miss Islington (bot)2018-04-041-1/+14
| | | | | | | This removes a hack and replaces it with a proper mapping {'list': 'List', 'dict': 'Dict', ...}. (cherry picked from commit 2a363d2930e29ec6d8a774973ed5a4965f881f5f) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* Call super in Generic.__init_subclass__ (GH-6356)Miss Islington (bot)2018-04-041-0/+1
| | | | | (cherry picked from commit ee566fe526f3d069aa313578ee81ca6cbc25ff52) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* bpo-32873: Treat type variables and special typing forms as immutable by ↵Miss Islington (bot)2018-03-261-5/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | copy and pickle (GH-6216) This also fixes python/typingGH-512 This also fixes python/typingGH-511 As was discussed in both issues, some typing forms deserve to be treated as immutable by copy and pickle modules, so that: * copy(X) is X * deepcopy(X) is X * loads(dumps(X)) is X GH- pickled by reference This PR adds such behaviour to: * Type variables * Special forms like Union, Any, ClassVar * Unsubscripted generic aliases to containers like List, Mapping, Iterable This not only resolves inconsistencies mentioned in the issues, but also improves backwards compatibility with previous versions of Python (including 3.6). Note that this requires some dances with __module__ for type variables (similar to NamedTuple) because the class TypeVar itself is define in typing, while type variables should get module where they were defined. https://bugs.python.org/issue32873 (cherry picked from commit 834940375ae88bc95794226dd8eff1f25fba1cf9) Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
* bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162)Ivan Levkivskyi2018-03-231-0/+1
|
* bpo-32226: PEP 560: improve typing module (#4906)Ivan Levkivskyi2018-01-201-1471/+664
| | | | This PR re-designs the internal typing API using the new PEP 560 features. However, there are only few minor changes in the public API.
* [bpo-28556] Minor fixes for typing module (#4710)Ivan Levkivskyi2017-12-041-8/+4
|
* bpo-28556: typing.get_type_hints: better globalns for classes and modules ↵Łukasz Langa2017-09-141-9/+18
| | | | | | | | | | | | | | | (#3582) This makes the default behavior (without specifying `globalns` manually) more predictable for users, finds the right globalns automatically. Implementation for classes assumes has a `__module__` attribute and that module is present in `sys.modules`. It does this recursively for all bases in the MRO. For modules, the implementation just uses their `__dict__` directly. This is backwards compatible, will just raise fewer exceptions in naive user code. Originally implemented and reviewed at https://github.com/python/typing/pull/470.
* bpo-28556: Minor updates to typing module (#3550)Ivan Levkivskyi2017-09-131-50/+29
| | | | * Copy changes to typing from upstream repo * Add NEWS entry
* bpo-28556: Updates to typing module (#2076)Ivan Levkivskyi2017-06-101-2/+59
| | | | | | | This PR contains two updates to typing module: - Support ContextManager on all versions (original PR by Jelle Zijlstra). - Add generic AsyncContextManager.
* bpo-28556: Routine updates to typing (#1366)Ivan Levkivskyi2017-05-021-4/+31
| | | | | - Add NoReturn type - Use WrapperDescriptorType (original PR by Jim Fasarakis-Hilliard) - Minor bug-fixes
* bpo-28556: Fix regression that sneaked into recent typing updates (GH-270)Ivan Levkivskyi2017-02-241-1/+4
|
* Update to typing: treat subscripted generics as proxies (#265)Ivan Levkivskyi2017-02-231-0/+7
|
* bpo-28556: Various updates to typing (#28)Ivan Levkivskyi2017-02-131-33/+105
| | | | | | | | | | | | | | | various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number
* Issue #28556: Allow defining methods in NamedTuple class syntax (#362)Guido van Rossum2017-01-221-0/+4
|
* Issue #28556: various style fixes for typing.pyGuido van Rossum2017-01-221-26/+47
|
* Issue #29198: add AsyncGenerator (Jelle Zijlstra)Guido van Rossum2017-01-181-1/+9
|
* Issue #28556: allow default values in class form of NamedTuple -- Jelle ZijlstraGuido van Rossum2017-01-181-1/+16
|
* Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, ↵Guido van Rossum2017-01-171-8/+43
| | | | #349, #350)
* Issue #29011: Fix an important omission by adding Deque to the typing module.Raymond Hettinger2017-01-161-0/+10
|
* Issue #28790: Fix error when using Generic and __slots__ (Ivan L)Guido van Rossum2016-11-291-3/+15
|
* Issue #28556: upstream improvements to docstrings and error messages by Ivan ↵Guido van Rossum2016-11-201-40/+44
| | | | Levkivskyi (#331)
* Issue #28556: two more small upstream changes by Ivan Levkivskyi (#329, #330)Guido van Rossum2016-11-191-0/+2
|
* Issue #28556: Allow keyword syntax for NamedTuple (Ivan Levkivskyi) ↵Guido van Rossum2016-11-151-37/+39
| | | | (upstream #321)
* Issue #28649: fix second issue with _ForwardRef (#328)Guido van Rossum2016-11-101-1/+1
|
* Issue #28649: fix first issue with _ForwardRef (#327)Guido van Rossum2016-11-101-10/+3
|
* Issue #28649: typing-clear-caches.patchGuido van Rossum2016-11-091-0/+4
|
* Issue #28556: More typing.py updates from upstream.Guido van Rossum2016-11-091-134/+72
|
* Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]())Guido van Rossum2016-10-291-8/+23
|
* Issue #28556: updates to typing.py (fix copy, deepcopy, pickle)Guido van Rossum2016-10-291-0/+8
|
* Issue #28556: updates to typing.pyGuido van Rossum2016-10-291-334/+404
|
* Two minor typing.py fixes (upstream #305)Guido van Rossum2016-10-211-5/+1
|
* Fix indentGuido van Rossum2016-10-211-3/+3
|
* Sync typing.py from upstreamGuido van Rossum2016-10-211-28/+79
|
* Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py.Guido van Rossum2016-10-091-3/+0
|
* Merge further typing.py changes from upstream.Guido van Rossum2016-10-081-1/+4
|
* More updates from upstream typing.pyGuido van Rossum2016-10-031-35/+70
|
* Update typing.py and test_typing.py from upstream ↵Guido van Rossum2016-09-271-339/+302
| | | | (https://github.com/python/typing)
* Issue #28079: Update typing and test typing from python/typing repo.Guido van Rossum2016-09-111-61/+267
| | | | Ivan Levkivskyi (3.5 version)
* A new version of typing.py from https://github.com/python/typing.Guido van Rossum2016-08-231-25/+43
|
* Sync typing.py with upstream.Guido van Rossum2016-06-081-2/+40
| | | | | | | | | (Upstream is https://github.com/python/typing) - Add TYPE_CHECKING (false at runtime, true in type checkers) (upstream #230). - Avoid error on Union[xml.etree.cElementTree.Element, str] (upstream #229). - Repr of Tuple[()] should be 'Tuple[()]' (upstream #231). - Add NewType() (upstream #189).