- 1e13ea9 - Issue #3537: Fix an assertion failure when an empty but presized dict by Georg Brandl · 17 years ago
- 83e8184 Copy reduce() to _functools so to have functools.reduce() not raise a warning by Brett Cannon · 17 years ago
- a032bf4 accept issue 3436 by Skip Montanaro · 17 years ago
- 3aa2a49 Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in by Brett Cannon · 17 years ago
- c777a41 Remove duplicate import by Mark Dickinson · 17 years ago
- 10288e1 Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, check for having os.stat available by Andrew M. Kuchling · 17 years ago
- b646757 Issue #1481296: (again!) Make conversion of a float NaN to an int or by Mark Dickinson · 17 years ago
- 70a6dbd Bug 3228: Explicitly supply the file mode to avoid creating executable files, by Andrew M. Kuchling · 17 years ago
- 92a6240 Preemptively backport the relevant parts of r65420 by Antoine Pitrou · 17 years ago
- 06847b1 Correct a crash when two successive unicode allocations fail with a MemoryError: by Amaury Forgeot d'Arc · 17 years ago
- ad96040 Remove a dummy test that was checked in by mistake by Amaury Forgeot d'Arc · 17 years ago
- 39fd672 #3479: unichr(2**32) used to return u'\x00'. by Amaury Forgeot d'Arc · 17 years ago
- e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 17 years ago
- 0f6414a Rename testSum to testFsum and move it to proper place in test_math.py by Mark Dickinson · 17 years ago
- cda5ce2 Backport test.support.fcmp() from 3.0 to silence -3 warnings. by Brett Cannon · 17 years ago
- f080e6d Alter recipe to show how to call izip_longest() with by Raymond Hettinger · 17 years ago
- 246daed #2542: now that issubclass() may call arbitrary code, by Amaury Forgeot d'Arc · 17 years ago
- b8827c0 I mess up again; BufferError inherits StandardError by Benjamin Peterson · 17 years ago
- 67ebfef add BufferError to the exception hieracrchy by Benjamin Peterson · 17 years ago
- fef6b13 Rename math.sum to math.fsum by Mark Dickinson · 17 years ago
- efdf706 Neaten-up the itertools recipes. by Raymond Hettinger · 17 years ago
- ff5f16e More modifications to tests for math.sum: replace the Python by Mark Dickinson · 17 years ago
- 3e9c60c Remove math.sum tests related to overflow, special values, and behaviour by Mark Dickinson · 17 years ago
- fe84cce Issue #3449: Update decimal module to use most recent specification by Mark Dickinson · 17 years ago
- 1ef19f0 Close issue 3437 - missing state change when Allow lines are processed. by Skip Montanaro · 17 years ago
- 36897e1 disable some failing tests in test_locale due to a bug in locale.py. by Antoine Pitrou · 17 years ago
- 6327e84 Fix more buildbot failures on test_locale. by Antoine Pitrou · 17 years ago
- 524f413 try to fix most buildbot failures on test_locale + add a debug output for the solaris buildbot by Antoine Pitrou · 17 years ago
- ba54eda convert test_locale to unittest, and add a mechanism to override localconv() results for further testing (#1864, #1222) by Antoine Pitrou · 17 years ago
- 5fdfa3e #3394: zipfile.writestr doesn't set external attributes, so files are extracted mode 000 on Unix by Antoine Pitrou · 17 years ago
- 8c664e8 Issue 1592: Better error reporting for operations on closed shelves. by Raymond Hettinger · 17 years ago
- 4982d5d #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versions by Antoine Pitrou · 17 years ago
- 30e208d remove unneeded import by Benjamin Peterson · 17 years ago
- f5574a0 don't use assert statement by Benjamin Peterson · 17 years ago
- e4921fe Issue2378: pdb would delete free variables when stepping into a class statement. by Amaury Forgeot d'Arc · 17 years ago
- fa26782 Save the whole of sys.modules instead of using an import tracker. by Georg Brandl · 17 years ago
- be3ff9c Fix misspeeld method name (negative) by Neal Norwitz · 17 years ago
- f1f46f0 Clean-up itertools docs and recipes. by Raymond Hettinger · 17 years ago
- 39e0eb7 Fix compress() recipe in docs to use itertools. by Raymond Hettinger · 17 years ago
- 59ec315 #3319: don't raise ZeroDivisionError if number of rounds is so by Georg Brandl · 17 years ago
- 278fc50 #3303: fix crash with invalid Py_DECREF in strcoll(). by Georg Brandl · 17 years ago
- 3369167 Add recipe to the itertools docs. by Raymond Hettinger · 17 years ago
- 3c21216 Improve accuracy of gamma test function by Raymond Hettinger · 17 years ago
- f032a00 Fix issue 3411: default float format spec fails on negative numbers. by Eric Smith · 17 years ago
- 1e8fba7 Deprecate the sunaudio module for removal in Python 3.0. The sunau module can provide similar functionality. by Brett Cannon · 17 years ago
- 74bbc79 Replace all map(None, a) with list(a). by Georg Brandl · 17 years ago
- e2886fd now that test_lib2to3 actually works and isn't extremely slow, we don't need the lib2to3 resource by Benjamin Peterson · 17 years ago
- 0e3a6cf backport test_fileio by Benjamin Peterson · 17 years ago
- 730c818 Correct attribute name. by Georg Brandl · 17 years ago
- 9334d02 Remove duplicate entry in __all__. by Georg Brandl · 17 years ago
- 70fdc95 Issue #3389: Allow resolving dotted names for handlers in logging configuration files. Thanks to Philip Jenvey for the patch. by Vinay Sajip · 17 years ago
- 7fb9640 Fix issue 3395, update _debugInfo to be _debug_info by Jesse Noller · 17 years ago
- d6c393a Backed out r65069, pending fixing it in Windows. by Eric Smith · 17 years ago
- 0c1dbf8 catch socket.error errors in badCertTest by Bill Janssen · 17 years ago
- 454816d Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. by Eric Smith · 17 years ago
- f5668f1 try to fix test_threading on the Windows bot by Benjamin Peterson · 17 years ago
- 0a34baf Byte items *can* be chars in 2.6. by Georg Brandl · 17 years ago
- 3e483f6 #3156: fix consistency in what type bytearray methods accept as items. by Georg Brandl · 17 years ago
- b9b68ae #3305: self->stream can be NULL. by Georg Brandl · 17 years ago
- 5e62ca4 Apply patch for 874900: threading module can deadlock after fork by Jesse Noller · 17 years ago
- 4b4f0eb lib2to3 isn't broken anymore, so we can run the test by Benjamin Peterson · 17 years ago
- 64b7e50 Issue #3360: Fix incorrect parsing of "020000000000.0". by Mark Dickinson · 17 years ago
- a736a28 disable lib2to3 in the trunk. It's broken just for 2.6 by Benjamin Peterson · 17 years ago
- a5fa5a2 Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format(). by Eric Smith · 17 years ago
- 6276456 Fix float.from_hex tests. It appears that Linux/ia64 doesn't like by Mark Dickinson · 17 years ago
- 7103aa4 Issue #3008: add instance method float.hex and class method float.fromhex by Mark Dickinson · 17 years ago
- 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 17 years ago
- d0c8412 Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin, oct, hex. There's still one failing case, and I need to finish the docs. I hope to finish those today. by Eric Smith · 17 years ago
- a6864e0 fix test_py3kwarns by Benjamin Peterson · 17 years ago
- 2ee623b Fixed test failure on Win64 machines. by Robert Schuppenies · 17 years ago
- e79edf5 remove sys.version_info check for 3.0 by Benjamin Peterson · 17 years ago
- 2a60879 remove bytes alias by Benjamin Peterson · 17 years ago
- b028f50 Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) by Nick Coghlan · 17 years ago
- 38469e2 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for itto test_warnings. by Nick Coghlan · 17 years ago
- 3d0b9f0 dummy_thread.acquire() would return None if no waitflag argument was given. It by Brett Cannon · 17 years ago
- 873c386 Fixed test for asyncore. by Josiah Carlson · 17 years ago
- 2252d11 #3342: In tracebacks, printed source lines were not indented since r62555. by Amaury Forgeot d'Arc · 17 years ago
- 4762902 Added garbage collector overhead and optional default return value to by Robert Schuppenies · 17 years ago
- 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 17 years ago
- b01713e Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. by Raymond Hettinger · 17 years ago
- 3cd1e42 Issue 3301: Bisect functions behaved badly when lo was negative. by Raymond Hettinger · 17 years ago
- d2cd86d Fixed Issue3122 and extended sys.getsizeof tests for built-in types. by Robert Schuppenies · 17 years ago
- 655d583 Issue 3287: Raise correct exception for float inputs. by Raymond Hettinger · 17 years ago
- 524b777 Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes by Nick Coghlan · 17 years ago
- 1a66441 Issue 3306. Better control for a lenght in findmax() function. by Facundo Batista · 17 years ago
- ff5f420 Fixed bugs 760475, 953599, and 1519. by Josiah Carlson · 17 years ago
- 3b1e6b2 - Issue #3309: Fix bz2.BZFile itererator to release its internal lock by Gregory P. Smith · 17 years ago
- 7f58022 remove test_compact_freelists from test_sys by Benjamin Peterson · 17 years ago
- 1ecce46 Keep below 80 chars. by Georg Brandl · 17 years ago
- 87988b6 make regrtest aware of the lib2to3 resource by Benjamin Peterson · 17 years ago
- 5a9ef42 Disable lib2to3 by default, unless run explicitly. by Martin v. Löwis · 17 years ago
- bf9f4d8 Issue 3188: accept float('infinity') as well as float('inf'). This by Mark Dickinson · 17 years ago
- e78fbcc #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. by Georg Brandl · 17 years ago
- 8c43641 Patch #1622: Correct interpretation of various ZIP header fields. by Martin v. Löwis · 17 years ago
- 0bfac6e Revert r64673 and instead just change the file encoding. by Brett Cannon · 17 years ago
- 3bff9d2 FIx some Latin-1 characters to be UTF-8 as the file encoding specifies. by Brett Cannon · 17 years ago
- 76cf55f Add #!/usr/bin/env python for ben by Jesse Noller · 17 years ago
- 146b7ab Reenable the manager tests with Amaury's threading fix by Jesse Noller · 17 years ago
- c060b0e Issue 3190: pydoc now hides module __package__ attributes by Nick Coghlan · 17 years ago
- 70c3289 Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure by Mark Dickinson · 17 years ago