| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #13577: various kinds of descriptors now have a __qualname__ attribute. | Antoine Pitrou | 2011-12-12 | 1 | -0/+18 |
|
|
* | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | 1 | -3/+8 |
|
|
* | Merge issue 1294232 patch from 3.2 | Nick Coghlan | 2011-10-23 | 1 | -0/+168 |
|\ |
|
| * | Issue 1294232: Fix errors in metaclass calculation affecting some cases of me... | Nick Coghlan | 2011-10-23 | 1 | -0/+168 |
|
|
* | | make __doc__ mutable on heaptypes (closes #12773) | Benjamin Peterson | 2011-08-17 | 1 | -0/+13 |
|
|
* | | improve test name | Benjamin Peterson | 2011-08-17 | 1 | -1/+1 |
|
|
* | | complain when a class variable shadows a name in __slots__ (closes #12766) | Benjamin Peterson | 2011-08-16 | 1 | -0/+8 |
|
|
* | | Issue 12647: Add __bool__() method to the None object. | Raymond Hettinger | 2011-07-28 | 1 | -3/+0 |
|
|
* | | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+8 |
|\ \
| |/ |
|
| * | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+8 |
| |\ |
|
| | * | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+8 |
|
|
* | | | excellent place for assertRaises | Benjamin Peterson | 2011-05-25 | 1 | -6/+1 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2011-05-23 | 1 | -0/+1 |
|\ \ \
| |/ / |
|
| * | | merge 3.1 | Benjamin Peterson | 2011-05-23 | 1 | -0/+1 |
| |\ \
| | |/ |
|
| | * | correctly lookup __dir__ | Benjamin Peterson | 2011-05-23 | 1 | -0/+1 |
|
|
* | | | (Merge 3.2) Issue #9756: When calling a method descriptor or a slot wrapper | Victor Stinner | 2011-05-01 | 1 | -0/+16 |
|\ \ \
| |/ / |
|
| * | | (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper | Victor Stinner | 2011-05-01 | 1 | -0/+16 |
| |\ \
| | |/ |
|
| | * | Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the | Victor Stinner | 2011-05-01 | 1 | -0/+16 |
|
|
* | | | #11565: Merge with 3.2. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| |\ \
| | |/ |
|
| | * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|
|
* | | | #11515: Merge with 3.2. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | #11515: Merge with 3.1. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
| |\ \
| | |/ |
|
| | * | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|
|
| | * | Merged revisions 87952-87954 via svnmerge from | Benjamin Peterson | 2011-01-12 | 1 | -0/+11 |
|
|
| | * | Merged revisions 87368 via svnmerge from | Ezio Melotti | 2010-12-18 | 1 | -0/+5 |
|
|
| | * | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -4/+4 |
|
|
| | * | Merged revisions 84984 via svnmerge from | Mark Dickinson | 2010-09-23 | 1 | -0/+5 |
|
|
| | * | Merged revisions 77937 via svnmerge from | Benjamin Peterson | 2010-02-03 | 1 | -0/+20 |
|
|
| | * | Merged revisions 77161 via svnmerge from | Benjamin Peterson | 2009-12-30 | 1 | -0/+5 |
|
|
| | * | Merged revisions 74745 via svnmerge from | Benjamin Peterson | 2009-09-11 | 1 | -7/+3 |
|
|
| | * | Merged revisions 73715 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -159/+159 |
|
|
* | | | Issue #10992: make tests pass when run under coverage. | Brett Cannon | 2011-02-22 | 1 | -0/+6 |
|/ / |
|
* | | don't segfault on deleting __abstractmethods__ #10892 | Benjamin Peterson | 2011-01-12 | 1 | -1/+5 |
|
|
* | | oops, wrong class | Benjamin Peterson | 2011-01-12 | 1 | -7/+7 |
|
|
* | | move this test to test_descr; it's not abc specific | Benjamin Peterson | 2011-01-12 | 1 | -0/+7 |
|
|
* | | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur... | Ezio Melotti | 2010-12-18 | 1 | -0/+5 |
|
|
* | | return views from dict proxy items/values/keys #10630 | Benjamin Peterson | 2010-12-07 | 1 | -5/+11 |
|
|
* | | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -4/+4 |
|
|
* | | Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; | Mark Dickinson | 2010-09-23 | 1 | -0/+5 |
|
|
* | | fix lookup of __ceil__ | Benjamin Peterson | 2010-07-02 | 1 | -0/+1 |
|
|
* | | correctly lookup __trunc__ and __floor__ | Benjamin Peterson | 2010-07-01 | 1 | -0/+3 |
|
|
* | | Merged revisions 81706-81707 via svnmerge from | Benjamin Peterson | 2010-06-05 | 1 | -0/+3 |
|
|
* | | (partially) | Florent Xicluna | 2010-04-02 | 1 | -1/+0 |
|
|
* | | Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,... | Benjamin Peterson | 2010-03-21 | 1 | -0/+9 |
|
|
* | | Merged revisions 78093 via svnmerge from | Georg Brandl | 2010-03-14 | 1 | -8/+1 |
|
|
* | | Merged revisions 78351 via svnmerge from | R. David Murray | 2010-02-24 | 1 | -0/+4 |
|
|
* | | Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,... | Benjamin Peterson | 2010-02-03 | 1 | -0/+20 |
|
|
* | | Merged revisions 77727 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -15/+15 |
|
|
* | | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -4/+4 |
|
|