| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators. | Yury Selivanov | 2016-09-09 | 1 | -0/+5 |
|
|
* | Issue #24254: Drop cls.__definition_order__. | Eric Snow | 2016-09-08 | 1 | -4/+1 |
|
|
* | Issue #24254: Preserve class attribute definition order. | Eric Snow | 2016-09-05 | 1 | -1/+4 |
|
|
* | Issue #24400: Resurrect inspect.isawaitable() | Yury Selivanov | 2015-07-03 | 1 | -5/+5 |
|
|
* | Issue #24450: Proxy cr_await and gi_yieldfrom in @types.coroutine | Yury Selivanov | 2015-07-03 | 1 | -0/+4 |
|
|
* | Issue #24400, #24325: More tests for types._GeneratorWrapper | Yury Selivanov | 2015-06-24 | 1 | -11/+11 |
|
|
* | Issue #24325, #24400: Add more unittests for types.coroutine; tweak wrapper i... | Yury Selivanov | 2015-06-24 | 1 | -31/+34 |
|
|
* | Issue #24400: Introduce a distinct type for 'async def' coroutines. | Yury Selivanov | 2015-06-22 | 1 | -33/+52 |
|
|
* | Issue 24316: Wrap gen objects returned from callables in types.coroutine | Yury Selivanov | 2015-05-29 | 1 | -4/+36 |
|
|
* | Issue 24316: Fix types.coroutine() to accept objects from Cython | Yury Selivanov | 2015-05-29 | 1 | -24/+42 |
|
|
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -0/+24 |
|
|
* | Issue #23504: Added an __all__ to the types module. | Serhiy Storchaka | 2015-03-04 | 1 | -0/+3 |
|
|
* | Close #19030: inspect.getmembers and inspect.classify_class_attrs | Ethan Furman | 2013-10-18 | 1 | -1/+1 |
|
|
* | Close #19030: improvements to inspect and Enum. | Ethan Furman | 2013-09-25 | 1 | -0/+57 |
|
|
* | Eric Snow's implementation of PEP 421. | Barry Warsaw | 2012-06-03 | 1 | -0/+1 |
|
|
* | Close #14588: added a PEP 3115 compliant dynamic type creation mechanism | Nick Coghlan | 2012-05-19 | 1 | -0/+58 |
|
|
* | Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType | Victor Stinner | 2012-04-15 | 1 | -0/+1 |
|
|
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 1 | -11/+3 |
|
|
* | Fix docstring of types.py. | Georg Brandl | 2007-12-21 | 1 | -3/+2 |
|
|
* | Removed more types from the types module | Christian Heimes | 2007-11-29 | 1 | -3/+0 |
|
|
* | Removed the new module | Christian Heimes | 2007-11-28 | 1 | -22/+1 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 1 | -1/+0 |
|
|
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 1 | -2/+0 |
|
|
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -1/+1 |
|
|
* | Merged revisions 55270-55324 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -13/+4 |
|
|
* | Get rid of 'file' built-in. Get rid of types.StringType and friends. | Guido van Rossum | 2007-05-08 | 1 | -12/+0 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -1/+0 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -1/+1 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -1/+13 |
|
|
* | SF patch 1495675: Remove types.InstanceType and new.instance | Guido van Rossum | 2006-05-26 | 1 | -4/+2 |
|
|
* | Oops! Restored the pickle test to test_pyclbr, but changed types.py so | Tim Peters | 2004-07-18 | 1 | -4/+3 |
|
|
* | [ 683376 ] Adding NotImplementedType to types.py | Just van Rossum | 2003-02-10 | 1 | -0/+1 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -2/+6 |
|
|
* | Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. | Raymond Hettinger | 2002-06-05 | 1 | -1/+1 |
|
|
* | add BooleanType | Skip Montanaro | 2002-05-21 | 1 | -0/+1 |
|
|
* | Remove some now-obsolete generator future statements. | Tim Peters | 2002-04-01 | 1 | -3/+1 |
|
|
* | Patch #487455: make types.StringTypes a tuple. | Martin v. Löwis | 2001-12-02 | 1 | -2/+2 |
|
|
* | Rename "dictionary" (type and constructor) to "dict". | Tim Peters | 2001-10-29 | 1 | -1/+1 |
|
|
* | Don't export generators future info | Jeremy Hylton | 2001-09-26 | 1 | -1/+1 |
|
|
* | SF [#463737] Add types.CallableIterType | Tim Peters | 2001-09-25 | 1 | -3/+5 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -6/+1 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -1/+6 |
|
|
* | Only catch the errors that can actually occur, as reported in bug #411881. | Martin v. Löwis | 2001-08-11 | 1 | -3/+7 |
|
|
* | Patch #449083: Use builtins to initalize the module. | Martin v. Löwis | 2001-08-08 | 1 | -7/+7 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -3/+9 |
|
|
* | Preliminary support for "from __future__ import generators" to enable | Guido van Rossum | 2001-07-15 | 1 | -0/+1 |
|
|
* | Teach the types module about generators. Thanks to James Althoff on the | Tim Peters | 2001-06-25 | 1 | -0/+5 |
|
|