summaryrefslogtreecommitdiff
path: root/Lib/test/test_class.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Sanyam Khurana2019-02-191-7/+13
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-311-11/+27
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* bpo-31506: Improve the error message logic for class instantiation (GH-4740)Sanyam Khurana2017-12-101-0/+49
* bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652)Serhiy Storchaka2017-05-201-0/+27
* Backed out changeset af29d89083b3 (closes #25548) (closes #27498)Benjamin Peterson2016-07-131-10/+0
* Issue #25548: Showing memory address of class objects in replKushal Das2016-06-041-0/+10
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-2/+2
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-6/+2
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-10/+34
|\
| * Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-10/+24
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-12/+12
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-161-9/+0
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-1/+1
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-37/+4
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-304/+507
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-11/+4
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-24/+24
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-26/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+8
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+2
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-2/+0
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-0/+24
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-5/+0
* Merge the rest of the trunk.Thomas Wouters2006-06-081-0/+34
* Make test_class work (but still fail) even though class.__dict__ is now aThomas Wouters2006-04-151-2/+5
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-12/+4
* Don't use 'is not' to compare strings.Michael W. Hudson2005-05-041-1/+1
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-191-27/+80
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Added test for this fix to classobject.c:Guido van Rossum2002-10-291-0/+27
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Fix for SF bug 532646. This is a little simpler than what NealGuido van Rossum2002-06-131-0/+14
* Fiddle test_class so it passes with -Qnew.Tim Peters2001-12-111-5/+20
* Committing and closing SF patch #403671 by Finn Bock to help JythonBarry Warsaw2001-08-201-11/+31
* Finn Bock (SF patch #103345): Avoid outdated exec form inGuido van Rossum2001-01-221-2/+2
* Add test that ensures hash() of objects defining __cmp__ or __eq__ butGuido van Rossum2001-01-181-0/+23
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-9/+8
* Fix for test_class.py on Win64. id(self), which on Win64 returns aTrent Mick2000-10-041-1/+1
* Apply SF patch #101029: call __getitem__ with a proper slice object if thereThomas Wouters2000-08-171-0/+219