1. 7162440 bpo-38407: Add docstrings for typing.SupportsXXX classes. (GH-16644) by Miss Islington (bot) · 4 years, 10 months ago
  2. 10b475a bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641) by Miss Islington (bot) · 4 years, 10 months ago
  3. b2c2a0c cleanup ababstractproperty in typing.py (GH-16432) by Miss Islington (bot) · 4 years, 10 months ago
  4. 2adcd79 bpo-38191: Use positional-only parameters in TypedDict(). (GH-16240) by Serhiy Storchaka · 4 years, 10 months ago
  5. 54ba5f1 bpo-38191: Accept arbitrary keyword names in NamedTuple() and TypedDict(). (GH-16222) by Miss Islington (bot) · 4 years, 10 months ago
  6. e91edfe bpo-37953: Fix ForwardRef hash and equality checks (GH-15400) by Miss Islington (bot) · 4 years, 10 months ago
  7. 52baf90 bpo-38008: Move builtin protocol whitelist to mapping instead of list (GH-15647) by Miss Islington (bot) · 4 years, 10 months ago
  8. 2085bd0 bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) by Serhiy Storchaka · 5 years ago
  9. 4c23aff bpo-29262: Add get_origin() and get_args() introspection helpers to typing (GH-13685) by Ivan Levkivskyi · 5 years ago
  10. d30da5d bpo-36983: Fix typing.__all__ and add test for exported names (GH-13456) by Anthony Sottile · 5 years ago
  11. 74d7f76 bpo-37058: PEP 544: Add Protocol to typing module (GH-13585) by Ivan Levkivskyi · 5 years ago
  12. 135c6a5 bpo-37049: PEP 589: Add TypedDict to typing module (GH-13573) by Ivan Levkivskyi · 5 years ago
  13. b891c46 bpo-37046: PEP 586: Add Literal to typing module (#13572) by Ivan Levkivskyi · 5 years ago
  14. f367242 bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571) by Ivan Levkivskyi · 5 years ago
  15. 4c7a46e bpo-36972: Add SupportsIndex (GH-13448) by Paul Dagnelie · 5 years ago
  16. f7b57df bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396) by Raymond Hettinger · 5 years ago
  17. 68b56d0 bpo-35341: Add generic version of OrderedDict to typing (GH-10850) by Ismo Toijala · 6 years ago
  18. 2d1bc53 bpo-35202: Remove unused imports in Lib directory. (GH-10445) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  19. 5eea0ad bpo-34921: Allow escaped NoReturn in get_type_hints (GH-9750) by Noah Wood · 6 years ago
  20. 5265b3a Fix typo in typing.py module docstring (#9014) by Tim McNamara · 6 years ago
  21. 86bfed3 Fix typo in TypeVar docstring (#8142) by João D. Ferreira · 6 years ago
  22. 97b523d bpo-33652: Remove __getstate__ and __setstate__ methods in typing. (GH-7144) by Serhiy Storchaka · 6 years ago
  23. 09f3221 bpo-33652: Improve pickle support in the typing module. (GH-7123) by Serhiy Storchaka · 6 years ago
  24. 0e61dff Reverse the meaning of is_argument when used for type check (GH-7039) by Nina Zakharenko · 6 years ago
  25. f65e31f bpo-28556: Don't simplify unions at runtime (GH-6841) by Ivan Levkivskyi · 6 years ago
  26. 2d2d3b1 Fix ClassVar as string fails when getting type hints (GH-6824) by Nina Zakharenko · 6 years ago
  27. b551e9f Fix a bug in Generic.__new__ (GH-6758) by Ivan Levkivskyi · 6 years ago
  28. 43d12a6 bpo-28556: Minor fixes for typing module (GH-6732) by Ivan Levkivskyi · 6 years ago
  29. 61f82e0 Spelling fixes to docs, docstrings, and comments (GH-6374) by Ville Skyttä · 6 years ago
  30. 2a363d2 bpo-32873: Remove a name hack for generic aliases in typing module (GH-6376) by Ivan Levkivskyi · 6 years ago
  31. ee566fe Call super in Generic.__init_subclass__ (#6356) by Ivan Levkivskyi · 6 years ago
  32. 8349403 bpo-32873: Treat type variables and special typing forms as immutable by copy and pickle (GH-6216) by Ivan Levkivskyi · 6 years ago
  33. 4573820 bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) by aetracht · 6 years ago
  34. d911e40 bpo-32226: PEP 560: improve typing module (#4906) by Ivan Levkivskyi · 7 years ago
  35. 29bc193 [bpo-28556] Minor fixes for typing module (#4710) by Ivan Levkivskyi · 7 years ago
  36. f350a26 bpo-28556: typing.get_type_hints: better globalns for classes and modules (#3582) by Łukasz Langa · 7 years ago
  37. 65bc620 bpo-28556: Minor updates to typing module (#3550) by Ivan Levkivskyi · 7 years ago
  38. 29fda8d bpo-28556: Updates to typing module (#2076) by Ivan Levkivskyi · 7 years ago
  39. f06e021 bpo-28556: Routine updates to typing (#1366) by Ivan Levkivskyi · 7 years ago
  40. 365cb5b bpo-28556: Fix regression that sneaked into recent typing updates (GH-270) by Ivan Levkivskyi · 7 years ago
  41. abb3b8a Update to typing: treat subscripted generics as proxies (#265) by Ivan Levkivskyi · 7 years ago
  42. b692dc8 bpo-28556: Various updates to typing (#28) by Ivan Levkivskyi · 7 years ago
  43. 95919c0 Issue #28556: Allow defining methods in NamedTuple class syntax (#362) by Guido van Rossum · 7 years ago
  44. d7adfe1 Issue #28556: various style fixes for typing.py by Guido van Rossum · 7 years ago
  45. e9ed560 Issue #29198: add AsyncGenerator (Jelle Zijlstra) by Guido van Rossum · 8 years ago
  46. 3c268be Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra by Guido van Rossum · 8 years ago
  47. 83ec302 Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #349, #350) by Guido van Rossum · 8 years ago
  48. 8049052 Issue #29011: Fix an important omission by adding Deque to the typing module. by Raymond Hettinger · 8 years ago
  49. 61f0a02 Issue #28790: Fix error when using Generic and __slots__ (Ivan L) by Guido van Rossum · 8 years ago
  50. b24569a Issue #28556: upstream improvements to docstrings and error messages by Ivan Levkivskyi (#331) by Guido van Rossum · 8 years ago
  51. ca4b252 Issue #28556: two more small upstream changes by Ivan Levkivskyi (#329, #330) by Guido van Rossum · 8 years ago
  52. 2f84144 Issue #28556: Allow keyword syntax for NamedTuple (Ivan Levkivskyi) (upstream #321) by Guido van Rossum · 8 years ago
  53. dad1790 Issue #28649: fix second issue with _ForwardRef (#328) by Guido van Rossum · 8 years ago
  54. c7b9295 Issue #28649: fix first issue with _ForwardRef (#327) by Guido van Rossum · 8 years ago
  55. 9b10756 Issue #28649: typing-clear-caches.patch by Guido van Rossum · 8 years ago
  56. 991d14f Issue #28556: More typing.py updates from upstream. by Guido van Rossum · 8 years ago
  57. 62fe1bb Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]()) by Guido van Rossum · 8 years ago
  58. b7dedc8 Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) by Guido van Rossum · 8 years ago
  59. 5fc25a8 Issue #28556: updates to typing.py by Guido van Rossum · 8 years ago
  60. 3b55799 Two minor typing.py fixes (upstream #305) by Guido van Rossum · 8 years ago
  61. 9f91e85 Fix indent by Guido van Rossum · 8 years ago
  62. 7ef22d6 Sync typing.py from upstream by Guido van Rossum · 8 years ago
  63. 5e2a0ef Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py. by Guido van Rossum · 8 years ago
  64. e259267 Merge further typing.py changes from upstream. by Guido van Rossum · 8 years ago
  65. b47c9d2 More updates from upstream typing.py by Guido van Rossum · 8 years ago
  66. 4cefe74 Update typing.py and test_typing.py from upstream (https://github.com/python/typing) by Guido van Rossum · 8 years ago
  67. 0a6976d Issue #28079: Update typing and test typing from python/typing repo. by Guido van Rossum · 8 years ago
  68. efa798d A new version of typing.py from https://github.com/python/typing. by Guido van Rossum · 8 years ago
  69. 91185fe Sync typing.py with upstream. by Guido van Rossum · 8 years ago
  70. b22c708 Comment/docstring tweaks for typing.py. by Guido van Rossum · 8 years ago
  71. eb9aca3 Added Type[C] implementation to typing.py. by Guido van Rossum · 8 years ago
  72. 1cea70f Fix #27014 -- infinite recursion using typing.py. by Guido van Rossum · 8 years ago
  73. 5abcbb3 typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. github.com/python/typing/pull/201. by Guido van Rossum · 8 years ago
  74. f3ad042 Issue #25609: Backport typing.ContextManager. by Brett Cannon · 8 years ago
  75. 0e0563c Add Text=str. Make ItemsView derive from AbstractSet, not Set (which is the concrete set). by Guido van Rossum · 8 years ago
  76. bd5b9a0 Many changes from the upstream repo (https://github.com/python/typing). by Guido van Rossum · 8 years ago
  77. f17c200 Add Awaitable, AsyncIterable, AsyncIterator to typing.py. by Guido van Rossum · 9 years ago
  78. 557d1eb Issue #25665: Make NamedTuple picklable. by Guido van Rossum · 9 years ago
  79. bb7c57c Issue #25472: In B[<type>], insert B in front of __bases__, to make the __dict__ descriptor work. by Guido van Rossum · 9 years ago
  80. ca636ea Issue #25390: typing: Don't crash on Union[str, Pattern]. by Guido van Rossum · 9 years ago
  81. 1b66910 Fix issue #24635. by Guido van Rossum · 9 years ago
  82. d70fe63 Issue #23973: Update typing.py from GitHub repo. by Guido van Rossum · 9 years ago
  83. 46dbb7d Preliminary typing.py, anticipating provisional acceptance of PEP 484. by Guido van Rossum · 9 years ago