| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-28556: Fix regression that sneaked into recent typing updates (GH-270) | Ivan Levkivskyi | 2017-02-24 | 1 | -0/+8 |
|
|
* | Update to typing: treat subscripted generics as proxies (#265) | Ivan Levkivskyi | 2017-02-24 | 1 | -0/+27 |
|
|
* | bpo-28556: Various updates to typing (#28) | Ivan Levkivskyi | 2017-02-13 | 1 | -25/+212 |
|
|
* | Issue #28556: Allow defining methods in NamedTuple class syntax (#362) | Guido van Rossum | 2017-01-23 | 1 | -5/+27 |
|
|
* | Issue #28556: various style fixes for typing.py | Guido van Rossum | 2017-01-23 | 1 | -10/+21 |
|
|
* | Issue #29198: add AsyncGenerator (Jelle Zijlstra) | Guido van Rossum | 2017-01-18 | 1 | -0/+42 |
|
|
* | Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra | Guido van Rossum | 2017-01-18 | 1 | -0/+26 |
|
|
* | Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, #3... | Guido van Rossum | 2017-01-18 | 1 | -4/+33 |
|
|
* | Issue #29011: Fix an important omission by adding Deque to the typing module. | Raymond Hettinger | 2017-01-17 | 1 | -0/+11 |
|
|
* | Issue #28790: Fix error when using Generic and __slots__ (Ivan L) | Guido van Rossum | 2016-11-29 | 1 | -0/+38 |
|
|
* | Issue #28556: two more small upstream changes by Ivan Levkivskyi (#329, #330) | Guido van Rossum | 2016-11-19 | 1 | -2/+19 |
|
|
* | Issue #28556: Allow keyword syntax for NamedTuple (Ivan Levkivskyi) (upstream... | Guido van Rossum | 2016-11-15 | 1 | -0/+14 |
|
|
* | Issue #28649: fix-typing-test-v2.diff | Guido van Rossum | 2016-11-09 | 1 | -3/+4 |
|
|
* | Issue #28556: More typing.py updates from upstream. | Guido van Rossum | 2016-11-09 | 1 | -16/+47 |
|
|
* | Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]()) | Guido van Rossum | 2016-10-29 | 1 | -1/+22 |
|
|
* | Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) | Guido van Rossum | 2016-10-29 | 1 | -0/+19 |
|
|
* | Issue #28556: updates to typing.py | Guido van Rossum | 2016-10-29 | 1 | -21/+136 |
|
|
* | Two minor typing.py fixes (upstream #305) | Guido van Rossum | 2016-10-22 | 1 | -1/+1 |
|
|
* | Issue #28482: Skip a few test_typing tests if asyncio unavailable | Guido van Rossum | 2016-10-21 | 1 | -7/+10 |
|
|
* | Sync typing.py from upstream | Guido van Rossum | 2016-10-21 | 1 | -5/+91 |
|
|
* | Merge further typing.py changes from upstream. | Guido van Rossum | 2016-10-09 | 1 | -0/+79 |
|
|
* | More updates from upstream typing.py | Guido van Rossum | 2016-10-03 | 1 | -29/+38 |
|
|
* | Update typing.py and test_typing.py from upstream (https://github.com/python/... | Guido van Rossum | 2016-09-27 | 1 | -223/+114 |
|
|
* | Issue #28079: Update typing and test typing from python/typing repo. | Guido van Rossum | 2016-09-11 | 1 | -2/+140 |
|
|
* | A new version of typing.py from https://github.com/python/typing. | Guido van Rossum | 2016-08-23 | 1 | -1/+12 |
|
|
* | Sync typing.py with upstream. | Guido van Rossum | 2016-06-08 | 1 | -2/+36 |
|
|
* | Added Type[C] implementation to typing.py. | Guido van Rossum | 2016-05-24 | 1 | -0/+28 |
|
|
* | Fix #27014 -- infinite recursion using typing.py. | Guido van Rossum | 2016-05-18 | 1 | -3/+22 |
|
|
* | Replace assert statements with self.assertXxx() calls | Zachary Ware | 2016-04-19 | 1 | -280/+304 |
|
|
* | typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. github.com/... | Guido van Rossum | 2016-04-18 | 1 | -0/+6 |
|
|
* | Sync test_typing.py with upstream git repo (typing.py was already synced). | Guido van Rossum | 2016-04-18 | 1 | -0/+20 |
|
|
* | Many changes from the upstream repo (https://github.com/python/typing). | Guido van Rossum | 2016-04-05 | 1 | -27/+129 |
|
|
* | Add Awaitable, AsyncIterable, AsyncIterator to typing.py. | Guido van Rossum | 2015-12-04 | 1 | -0/+61 |
|
|
* | Issue #25665: Test pickling with all protocols in test_typing. | Serhiy Storchaka | 2015-11-20 | 1 | -8/+10 |
|
|
* | Issue #25665: Make NamedTuple picklable. | Guido van Rossum | 2015-11-19 | 1 | -0/+8 |
|
|
* | Remove unused imports from test_typing.py. | Guido van Rossum | 2015-11-19 | 1 | -5/+0 |
|
|
* | Issue #25472: In B[<type>], insert B in front of __bases__, to make the __dic... | Guido van Rossum | 2015-11-19 | 1 | -0/+30 |
|
|
* | Issue #25390: typing: Don't crash on Union[str, Pattern]. | Guido van Rossum | 2015-10-19 | 1 | -0/+4 |
|
|
* | Fix issue #24635. | Guido van Rossum | 2015-09-04 | 1 | -3/+14 |
|
|
* | Issue #23973: Update typing.py from GitHub repo. | Guido van Rossum | 2015-08-05 | 1 | -201/+74 |
|
|
* | Preliminary typing.py, anticipating provisional acceptance of PEP 484. | Guido van Rossum | 2015-05-22 | 1 | -0/+1373 |
|
|