1. 10b475a bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641) by Miss Islington (bot) · 4 years, 10 months ago
  2. 2adcd79 bpo-38191: Use positional-only parameters in TypedDict(). (GH-16240) by Serhiy Storchaka · 4 years, 10 months ago
  3. 54ba5f1 bpo-38191: Accept arbitrary keyword names in NamedTuple() and TypedDict(). (GH-16222) by Miss Islington (bot) · 4 years, 10 months ago
  4. 66da347 bpo-37953: Fix deprecation warnings in test_typing (GH-16133) by Miss Islington (bot) · 4 years, 10 months ago
  5. e91edfe bpo-37953: Fix ForwardRef hash and equality checks (GH-15400) by Miss Islington (bot) · 4 years, 10 months ago
  6. 52baf90 bpo-38008: Move builtin protocol whitelist to mapping instead of list (GH-15647) by Miss Islington (bot) · 4 years, 10 months ago
  7. 5fda09c bpo-28556: Add a regression test to typing (GH-15396) by Miss Islington (bot) · 5 years ago
  8. 1c31d19 closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977) by Miss Islington (bot) · 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. 2f0bfd2 Add one more test for typing.Final (GH-13588) by Ivan Levkivskyi · 5 years ago
  13. 135c6a5 bpo-37049: PEP 589: Add TypedDict to typing module (GH-13573) by Ivan Levkivskyi · 5 years ago
  14. b891c46 bpo-37046: PEP 586: Add Literal to typing module (#13572) by Ivan Levkivskyi · 5 years ago
  15. f367242 bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571) by Ivan Levkivskyi · 5 years ago
  16. 4c7a46e bpo-36972: Add SupportsIndex (GH-13448) by Paul Dagnelie · 5 years ago
  17. 68b34a7 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) by Andrew Svetlov · 5 years ago
  18. 68b56d0 bpo-35341: Add generic version of OrderedDict to typing (GH-10850) by Ismo Toijala · 6 years ago
  19. 9613609 bpo-34181: Fix running Lib/test/test_typing.py as a script. (GH-8380) by Serhiy Storchaka · 6 years ago
  20. f65e31f bpo-28556: Don't simplify unions at runtime (GH-6841) by Ivan Levkivskyi · 6 years ago
  21. 2d2d3b1 Fix ClassVar as string fails when getting type hints (GH-6824) by Nina Zakharenko · 6 years ago
  22. b551e9f Fix a bug in Generic.__new__ (GH-6758) by Ivan Levkivskyi · 6 years ago
  23. 43d12a6 bpo-28556: Minor fixes for typing module (GH-6732) by Ivan Levkivskyi · 6 years ago
  24. 2a363d2 bpo-32873: Remove a name hack for generic aliases in typing module (GH-6376) by Ivan Levkivskyi · 6 years ago
  25. ee566fe Call super in Generic.__init_subclass__ (#6356) by Ivan Levkivskyi · 6 years ago
  26. 8349403 bpo-32873: Treat type variables and special typing forms as immutable by copy and pickle (GH-6216) by Ivan Levkivskyi · 6 years ago
  27. 03e3c34 bpo-31333: Re-implement ABCMeta in C (#5273) by Ivan Levkivskyi · 6 years ago
  28. d911e40 bpo-32226: PEP 560: improve typing module (#4906) by Ivan Levkivskyi · 7 years ago
  29. 29bc193 [bpo-28556] Minor fixes for typing module (#4710) by Ivan Levkivskyi · 7 years ago
  30. 03b9537 bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966) by Éric Araujo · 7 years ago
  31. f350a26 bpo-28556: typing.get_type_hints: better globalns for classes and modules (#3582) by Łukasz Langa · 7 years ago
  32. 65bc620 bpo-28556: Minor updates to typing module (#3550) by Ivan Levkivskyi · 7 years ago
  33. 29fda8d bpo-28556: Updates to typing module (#2076) by Ivan Levkivskyi · 7 years ago
  34. f06e021 bpo-28556: Routine updates to typing (#1366) by Ivan Levkivskyi · 7 years ago
  35. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 7 years ago
  36. 365cb5b bpo-28556: Fix regression that sneaked into recent typing updates (GH-270) by Ivan Levkivskyi · 7 years ago
  37. abb3b8a Update to typing: treat subscripted generics as proxies (#265) by Ivan Levkivskyi · 7 years ago
  38. b692dc8 bpo-28556: Various updates to typing (#28) by Ivan Levkivskyi · 7 years ago
  39. 95919c0 Issue #28556: Allow defining methods in NamedTuple class syntax (#362) by Guido van Rossum · 7 years ago
  40. d7adfe1 Issue #28556: various style fixes for typing.py by Guido van Rossum · 7 years ago
  41. e9ed560 Issue #29198: add AsyncGenerator (Jelle Zijlstra) by Guido van Rossum · 8 years ago
  42. 3c268be Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra by Guido van Rossum · 8 years ago
  43. 83ec302 Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #349, #350) by Guido van Rossum · 8 years ago
  44. 8049052 Issue #29011: Fix an important omission by adding Deque to the typing module. by Raymond Hettinger · 8 years ago
  45. 61f0a02 Issue #28790: Fix error when using Generic and __slots__ (Ivan L) by Guido van Rossum · 8 years ago
  46. ca4b252 Issue #28556: two more small upstream changes by Ivan Levkivskyi (#329, #330) by Guido van Rossum · 8 years ago
  47. 2f84144 Issue #28556: Allow keyword syntax for NamedTuple (Ivan Levkivskyi) (upstream #321) by Guido van Rossum · 8 years ago
  48. f9099de Issue #28649: fix-typing-test-v2.diff by Guido van Rossum · 8 years ago
  49. 991d14f Issue #28556: More typing.py updates from upstream. by Guido van Rossum · 8 years ago
  50. 62fe1bb Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]()) by Guido van Rossum · 8 years ago
  51. b7dedc8 Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) by Guido van Rossum · 8 years ago
  52. 5fc25a8 Issue #28556: updates to typing.py by Guido van Rossum · 8 years ago
  53. 3b55799 Two minor typing.py fixes (upstream #305) by Guido van Rossum · 8 years ago
  54. ac353df Issue #28482: Skip a few test_typing tests if asyncio unavailable by Guido van Rossum · 8 years ago
  55. 7ef22d6 Sync typing.py from upstream by Guido van Rossum · 8 years ago
  56. e259267 Merge further typing.py changes from upstream. by Guido van Rossum · 8 years ago
  57. b47c9d2 More updates from upstream typing.py by Guido van Rossum · 8 years ago
  58. 4cefe74 Update typing.py and test_typing.py from upstream (https://github.com/python/typing) by Guido van Rossum · 8 years ago
  59. 0a6976d Issue #28079: Update typing and test typing from python/typing repo. by Guido van Rossum · 8 years ago
  60. efa798d A new version of typing.py from https://github.com/python/typing. by Guido van Rossum · 8 years ago
  61. 91185fe Sync typing.py with upstream. by Guido van Rossum · 8 years ago
  62. eb9aca3 Added Type[C] implementation to typing.py. by Guido van Rossum · 8 years ago
  63. 1cea70f Fix #27014 -- infinite recursion using typing.py. by Guido van Rossum · 8 years ago
  64. 75b1bdc Replace assert statements with self.assertXxx() calls by Zachary Ware · 8 years ago
  65. 5abcbb3 typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. github.com/python/typing/pull/201. by Guido van Rossum · 8 years ago
  66. 6aafbd4 Sync test_typing.py with upstream git repo (typing.py was already synced). by Guido van Rossum · 8 years ago
  67. bd5b9a0 Many changes from the upstream repo (https://github.com/python/typing). by Guido van Rossum · 8 years ago
  68. f17c200 Add Awaitable, AsyncIterable, AsyncIterator to typing.py. by Guido van Rossum · 9 years ago
  69. 6d9e923 Issue #25665: Test pickling with all protocols in test_typing. by Serhiy Storchaka · 9 years ago
  70. 557d1eb Issue #25665: Make NamedTuple picklable. by Guido van Rossum · 9 years ago
  71. 05e3090 Remove unused imports from test_typing.py. by Guido van Rossum · 9 years ago
  72. 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
  73. ca636ea Issue #25390: typing: Don't crash on Union[str, Pattern]. by Guido van Rossum · 9 years ago
  74. 1b66910 Fix issue #24635. by Guido van Rossum · 9 years ago
  75. d70fe63 Issue #23973: Update typing.py from GitHub repo. by Guido van Rossum · 9 years ago
  76. 46dbb7d Preliminary typing.py, anticipating provisional acceptance of PEP 484. by Guido van Rossum · 9 years ago