summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix the speed regression in inspect.py by adding another cache to speed up ge...Nick Coghlan2006-09-071-0/+11
* Fixed subprocess bug #1531862 again, after removing testsGustavo Niemeyer2006-09-071-0/+6
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-26/+13
* Revert 51758 because it broke all the buildbotsNeal Norwitz2006-09-061-42/+0
* Fixing #1531862: Do not close standard file descriptors in theGustavo Niemeyer2006-09-061-0/+42
* Fix a few bugs on cjkcodecs found by Oren Tirosh:Hye-Shik Chang2006-09-052-0/+8
* Bug #1520864 (again): unpacking singleton tuples in list comprehensions andNeal Norwitz2006-09-051-0/+4
* Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34].Neal Norwitz2006-09-052-2/+2
* Fix SF bug #1546288, crash in dict_equal.Neal Norwitz2006-09-051-1/+9
* Fix endcase for str.rpartition()Raymond Hettinger2006-09-041-1/+1
* Hmm, this test has failed at least twice recently on the OpenBSD andNeal Norwitz2006-09-021-1/+12
* Make decimal.ContextManager a private implementation detail of decimal.localc...Nick Coghlan2006-09-021-13/+2
* Bug #1550714: fix SystemError from itertools.tee on negative value for n.Neal Norwitz2006-09-021-0/+1
* Remove the old decimal context management tests from test_contextlib (guess w...Nick Coghlan2006-08-311-26/+0
* Fix the wrongheaded implementation of context management in the decimal modul...Nick Coghlan2006-08-311-0/+39
* - Move functions common to all path modules into genericpath.py and have theJack Diederich2006-08-261-0/+184
* A new test here relied on preserving invisible trailingTim Peters2006-08-251-2/+3
* Whitespace normalization.Tim Peters2006-08-252-4/+4
* The regular expression engine in '_sre' can segfault when interpretingArmin Rigo2006-08-251-0/+47
* Fix SF bug #1545837: array.array borks on deepcopy.Thomas Wouters2006-08-241-0/+7
* Reverting the patch that tried to fix the issue whereby x**2 raisesAlex Martelli2006-08-231-14/+1
* Bug fixes large and small for tokenize.Jeremy Hylton2006-08-232-35/+114
* x**2 should about equal x*x (including for a float x such that the result isAlex Martelli2006-08-231-1/+14
* Baby steps towards better tests for tokenizeJeremy Hylton2006-08-231-3/+46
* Expose column offset information in parse trees.Jeremy Hylton2006-08-221-0/+38
* Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-211-0/+4
* Patch #1542451: disallow continue anywhere under a finallyNeal Norwitz2006-08-211-0/+87