summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Convert test_poll to unittest.Georg Brandl2006-10-292-195/+140
* Convert test_mmap to unittest.Georg Brandl2006-10-292-276/+156
* Bug #1576657: when setting a KeyError for a tuple key, make sure thatGeorg Brandl2006-10-291-0/+10
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-291-0/+2
* Fix the new EncodedFile test to work with big endian platforms.Georg Brandl2006-10-291-2/+2
* Test assert if __debug__ is true.Georg Brandl2006-10-291-4/+3
* Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, andGeorg Brandl2006-10-291-1/+28
* Fix test_modulefinder so it doesn't fail when run after test_distutils.Neal Norwitz2006-10-281-0/+1
* Fix bug #1565514, SystemError not raised on too many nested blocks.Neal Norwitz2006-10-281-0/+31
* make test_grammar pass with python -OGeorg Brandl2006-10-281-2/+4
* Convert test_opcodes to unittest.Georg Brandl2006-10-282-105/+108
* Convert test_math to unittest.Georg Brandl2006-10-282-229/+207
* Update outstanding bugs test file.Georg Brandl2006-10-281-10/+5
* Convert test_global, test_scope and test_grammar to unittest.Georg Brandl2006-10-288-1288/+1263
* Port test_bufio to unittest.Walter Dörwald2006-10-281-55/+61
* Modulefinder now handles absolute and relative imports, includingThomas Heller2006-10-271-0/+263
* WindowsError.str should display the windows error code,Thomas Heller2006-10-271-0/+13
* [Bug #1575506] The _singlefileMailbox class was using the wrong file object i...Andrew M. Kuchling2006-10-271-0/+16
* [Bug #1576241] Let functools.wraps work with built-in functionsAndrew M. Kuchling2006-10-271-0/+7
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-271-0/+80
* Patch [ 1583506 ] tarfile.py: 100-char filenames are truncatedGeorg Brandl2006-10-241-0/+27
* Remove passwd.adjunct.byname from list of mapsMartin v. Löwis2006-10-221-0/+7
* Port test___future__ to unittest.Walter Dörwald2006-10-221-52/+56
* Whitespace normalization.Tim Peters2006-10-181-2/+2
* Round to int, because some systems support sub-second time stamps in stat, bu...Martin v. Löwis2006-10-151-2/+4
* Loosen the test for equal time stamps.Martin v. Löwis2006-10-151-1/+1
* Patch #1576166: Support os.utime for directories on Windows NT+.Martin v. Löwis2006-10-151-0/+7
* Update the peephole optimizer to remove more dead code (jumps after returns)Neal Norwitz2006-10-141-0/+35
* Bug #1545497: when given an explicit base, int() did ignore NULsGeorg Brandl2006-10-121-0/+5
* Bug #1548891: The cStringIO.StringIO() constructor now encodes unicodeGeorg Brandl2006-10-121-0/+22
* Bug #1565150: Fix subsecond processing for os.utime on Windows.Martin v. Löwis2006-10-091-0/+8
* Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfaultHye-Shik Chang2006-10-081-0/+10
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-043-8/+29
* Fix integer negation and absolute value to not relyMartin v. Löwis2006-10-041-0/+1
* Fix for SF bug 1569998: break permitted inside try.Jeremy Hylton2006-10-041-0/+14
* Convert test_imp over to unittest.Brett Cannon2006-10-031-29/+33
* Convert test_import to unittest.Georg Brandl2006-09-301-200/+197
* Bug #1556784: allow format strings longer than 127 characters inGeorg Brandl2006-09-301-0/+1
* Bug #1560617: in pyclbr, return full module name not only for classes,Georg Brandl2006-09-301-0/+3
* Bug #1566800: make sure that EnvironmentError can be called with anyGeorg Brandl2006-09-301-3/+8
* Patch #1567691: super() and new.instancemethod() now don't acceptGeorg Brandl2006-09-302-0/+15
* Another crasher.Armin Rigo2006-09-251-0/+36
* Fix a bug in traceback.format_exception_only() that led to an errorGeorg Brandl2006-09-241-0/+4
* Fix a bug in the parser's future statement handling that led to "with"Georg Brandl2006-09-241-0/+21
* Make output on test_strptime() be more verbose in face of failure. This is inBrett Cannon2006-09-231-3/+7
* Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).Neal Norwitz2006-09-221-0/+91
* * regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_tJack Diederich2006-09-211-0/+4
* Add a "crasher" taken from the sgml bug report referenced in the commentNeal Norwitz2006-09-111-0/+16
* Forward port of 51850 from release25-maint branch.Neal Norwitz2006-09-112-15/+225
* Remove the __unicode__ method from exceptions. Allows unicode() to be calledBrett Cannon2006-09-092-2/+10