summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove obsolete paragraph. #2288.Georg Brandl2008-03-141-4/+0
|
* Run debug version, cd to PCbuild.Martin v. Löwis2008-03-141-2/+2
|
* Remove unneeded initializer.Thomas Heller2008-03-141-1/+1
|
* Issue 705836: Fix struct.pack(">f", 1e40) to behave consistentlyMark Dickinson2008-03-143-9/+13
| | | | | | | | | | across platforms: it should now raise OverflowError on all platforms. (Previously it raised OverflowError only on non IEEE 754 platforms.) Also fix the (already existing) test for this behaviour so that it actually raises TestFailed instead of just referencing it.
* Remove a bad test.Brett Cannon2008-03-141-1/+0
|
* Use -x64 flag.Martin v. Löwis2008-03-141-2/+2
|
* Patch #2284: add -x64 option to rt.bat.Martin v. Löwis2008-03-142-4/+14
|
* Leave heapreplace() unchanged.Raymond Hettinger2008-03-141-5/+0
|
* Convert test_fcntl to unittest.Brett Cannon2008-03-132-63/+85
| | | | Closes issue #2055. Thanks Giampaolo Rodola.
* Move test_gdbm to use unittest.Brett Cannon2008-03-133-42/+82
| | | | Closes issue #1960. Thanks Giampaolo Rodola.
* Convert test_contains, test_crypt, and test_select to unittest.Brett Cannon2008-03-134-77/+68
| | | | Patch from GHOP 294 by David Marek.
* Move test_tokenize to doctest.Brett Cannon2008-03-134-845/+501
| | | | Done as GHOP 238 by Josip Dzolonga.
* Move test_thread over to unittest. Commits GHOP 237.Brett Cannon2008-03-133-165/+153
| | | | Thanks Benjamin Peterson for the patch.
* Simplify the nlargest() code using heappushpop().Raymond Hettinger2008-03-131-6/+2
|
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-135-2/+95
|
* Consistent tense.Raymond Hettinger2008-03-131-1/+1
|
* Add 2-to-3 support for the itertools moved to builtins or renamed.Raymond Hettinger2008-03-131-0/+25
|
* Add class decoratorsAndrew M. Kuchling2008-03-131-1/+8
|
* #1720705: add docs about import/threading interaction, wording by Nick.Georg Brandl2008-03-131-0/+23
|
* #2270: fix typo.Georg Brandl2008-03-131-1/+1
|
* #2265: fix example.Georg Brandl2008-03-131-1/+1
|
* Improve docs for itemgetter(). Show that it works with slices.Raymond Hettinger2008-03-111-12/+33
|
* Fix the overflows in expandtabs(). "This time for sure!"Guido van Rossum2008-03-112-50/+65
| | | | (Exploit at request.)
* Add recipe to docs.Raymond Hettinger2008-03-112-0/+14
|
* Introduce a lock to fix a race condition which caused an exception in the test.Neal Norwitz2008-03-091-6/+16
| | | | | Some buildbots were consistently failing (e.g., amd64). Also remove a couple of semi-colons.
* Update for newest Sphinx.Georg Brandl2008-03-091-3/+4
|
* #2249: document assertTrue and assertFalse.Georg Brandl2008-03-091-0/+2
|
* Well that was dumb. platform.python_implementation returns a function, not aJeffrey Yasskin2008-03-081-2/+3
| | | | string.
* Fix pybench for pythons < 2.6, tested back to 2.3.Jeffrey Yasskin2008-03-081-2/+2
|
* Add tests for with and finally performance to pybench.Jeffrey Yasskin2008-03-082-0/+194
|
* Issue 1106316. post_mortem()'s parameter, traceback, is nowFacundo Batista2008-03-083-3/+20
| | | | | optional: it defaults to the traceback of the exception that is currently being handled.
* #1533486: fix types in refcount intro.Georg Brandl2008-03-081-1/+1
|
* Add new name for Mandrake: Mandriva.Marc-André Lemburg2008-03-081-3/+4
|
* #2253: fix continue vs. finally docs.Georg Brandl2008-03-081-6/+5
|
* Grammar fixAndrew M. Kuchling2008-03-071-1/+1
|
* Speed up with statements by storing the __exit__ method on the stack instead ↵Nick Coghlan2008-03-076-55/+77
| | | | of in a temp variable (bumps the magic number for pyc files)
* Progress on issue #1193577 by adding a polling .shutdown() method toJeffrey Yasskin2008-03-074-86/+118
| | | | | | SocketServers. The core of the patch was written by Pedro Werneck, but any bugs are mine. I've also rearranged the code for timeouts in order to avoid interfering with the shutdown poll.
* Tweak recipes and testsRaymond Hettinger2008-03-072-13/+36
|
* Issue 2246: itertools grouper object did not participate in GC (should be ↵Raymond Hettinger2008-03-062-5/+22
| | | | backported).
* More tests.Raymond Hettinger2008-03-061-6/+144
|
* Update db-4.4.20 build procedure.Martin v. Löwis2008-03-061-4/+9
|
* Rely on x64 platform configuration when building _bsddb on AMD64.Martin v. Löwis2008-03-062-9/+11
|
* Bug #2220: handle rlcompleter attribute match failure more gracefully.Georg Brandl2008-03-061-0/+2
|
* #2220: handle matching failure more gracefully.Georg Brandl2008-03-061-1/+1
|
* #2225: return nonzero status code from py_compile if not all files could be ↵Georg Brandl2008-03-063-3/+15
| | | | compiled.
* Add missing NEWS entry for r61263.Georg Brandl2008-03-061-0/+3
|
* Add isinstance/issubclass to tutorial.Georg Brandl2008-03-061-0/+16
|
* Little clarification of assignments.Georg Brandl2008-03-061-8/+11
|
* Expand on re.split behavior with captured expressions.Georg Brandl2008-03-061-1/+13
|
* Patch #2232: os.tmpfile might fail on Windows if the user has noMartin v. Löwis2008-03-062-0/+44
| | | | | permission to create files in the root directory. Will backport to 2.5.