summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Fix issue 3395, update _debugInfo to be _debug_infoJesse Noller2008-07-171-1/+1
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-172-22/+2
* catch socket.error errors in badCertTestBill Janssen2008-07-171-0/+3
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-172-2/+22
* try to fix test_threading on the Windows botBenjamin Peterson2008-07-171-1/+2
* Byte items *can* be chars in 2.6.Georg Brandl2008-07-161-1/+2
* #3156: fix consistency in what type bytearray methods accept as items.Georg Brandl2008-07-161-16/+25
* #3305: self->stream can be NULL.Georg Brandl2008-07-161-0/+9
* Apply patch for 874900: threading module can deadlock after forkJesse Noller2008-07-161-1/+79
* lib2to3 isn't broken anymore, so we can run the testBenjamin Peterson2008-07-161-2/+1
* Issue #3360: Fix incorrect parsing of "020000000000.0".Mark Dickinson2008-07-161-0/+4
* disable lib2to3 in the trunk. It's broken just for 2.6Benjamin Peterson2008-07-161-1/+2
* Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.for...Eric Smith2008-07-161-1/+12
* Fix float.from_hex tests. It appears that Linux/ia64 doesn't likeMark Dickinson2008-07-151-4/+4
* Issue #3008: add instance method float.hex and class method float.fromhexMark Dickinson2008-07-151-1/+386
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-154-66/+89
* Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin...Eric Smith2008-07-152-0/+45
* fix test_py3kwarnsBenjamin Peterson2008-07-141-18/+19
* Fixed test failure on Win64 machines.Robert Schuppenies2008-07-141-8/+5
* remove sys.version_info check for 3.0Benjamin Peterson2008-07-131-5/+1
* remove bytes aliasBenjamin Peterson2008-07-131-7/+0
* Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError wh...Nick Coghlan2008-07-131-3/+33
* Make test.test_support.catch_warnings more robust as discussed on python-dev....Nick Coghlan2008-07-134-63/+94
* dummy_thread.acquire() would return None if no waitflag argument was given. ItBrett Cannon2008-07-131-0/+1
* Fixed test for asyncore.Josiah Carlson2008-07-111-3/+3
* #3342: In tracebacks, printed source lines were not indented since r62555.Amaury Forgeot d'Arc2008-07-111-1/+1
* Added garbage collector overhead and optional default return value toRobert Schuppenies2008-07-101-0/+23
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-18/+47
* Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.Raymond Hettinger2008-07-101-8/+4
* Issue 3301: Bisect functions behaved badly when lo was negative.Raymond Hettinger2008-07-101-0/+8
* Fixed Issue3122 and extended sys.getsizeof tests for built-in types.Robert Schuppenies2008-07-101-67/+172
* Issue 3287: Raise correct exception for float inputs.Raymond Hettinger2008-07-101-4/+4
* Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing...Nick Coghlan2008-07-081-0/+1
* Issue 3306. Better control for a lenght in findmax() function.Facundo Batista2008-07-071-0/+4
* Fixed bugs 760475, 953599, and 1519.Josiah Carlson2008-07-071-2/+8
* - Issue #3309: Fix bz2.BZFile itererator to release its internal lockGregory P. Smith2008-07-071-0/+11
* remove test_compact_freelists from test_sysBenjamin Peterson2008-07-061-19/+0
* Keep below 80 chars.Georg Brandl2008-07-051-2/+2
* make regrtest aware of the lib2to3 resourceBenjamin Peterson2008-07-051-1/+3
* Disable lib2to3 by default, unless run explicitly.Martin v. Löwis2008-07-051-1/+5
* Issue 3188: accept float('infinity') as well as float('inf'). ThisMark Dickinson2008-07-051-1/+17
* #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.Georg Brandl2008-07-051-0/+76
* Patch #1622: Correct interpretation of various ZIP header fields.Martin v. Löwis2008-07-032-1/+73
* Revert r64673 and instead just change the file encoding.Brett Cannon2008-07-021-3/+3
* FIx some Latin-1 characters to be UTF-8 as the file encoding specifies.Brett Cannon2008-07-021-2/+2
* Add #!/usr/bin/env python for benJesse Noller2008-07-021-0/+2
* Reenable the manager tests with Amaury's threading fixJesse Noller2008-07-021-17/+13
* Issue 3190: pydoc now hides module __package__ attributesNick Coghlan2008-07-021-2/+0
* Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sureMark Dickinson2008-07-021-0/+3
* Handle urllib's renaming for Python 3.0:Brett Cannon2008-07-022-13/+21