- 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 18 years ago
- e1ac4f1 Fixes Issue 1385: The hmac module now computes the correct hmac when using by Gregory P. Smith · 18 years ago
- 80e95c1 * db->get_flags is only available in BerkeleyDB >= 4.2 by Gregory P. Smith · 18 years ago
- ac11e02 Add the bsddb.db.DBEnv.lock_id_free method. by Gregory P. Smith · 18 years ago
- ec10a4a Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and by Gregory P. Smith · 18 years ago
- b13f70d Add a missing quotation mark. by Brett Cannon · 18 years ago
- 03fd077 Enable the full ctypes c_longdouble tests again. by Thomas Heller · 18 years ago
- 3814a91 Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport candidate) by Nick Coghlan · 18 years ago
- 6d331ca Undo revision 58533 58534 fixes. Those were a workaround for by Gregory P. Smith · 18 years ago
- aae141a Fix bug introduced in revision 58385. Database keys could no longer by Gregory P. Smith · 18 years ago
- 4de2263 Removed non ASCII text from test as requested by Guido. Sorry :/ by Christian Heimes · 18 years ago
- e18f21c Backport of import tests for bug http://bugs.python.org/issue1293 and bug http://bugs.python.org/issue1342 by Christian Heimes · 18 years ago
- 20172f9 check in Tal Einat's update to tabpage.py Patch 1612746 by Kurt B. Kaiser · 18 years ago
- dff51b2 Patch 1353 by Jacob Winther. Add mp4 mapping to mimetypes.py. by Guido van Rossum · 18 years ago
- 60d5840 Add confirmation dialog before printing. Patch 1717170 Tal Einat. by Kurt B. Kaiser · 18 years ago
- ea68474 Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) by Hye-Shik Chang · 18 years ago
- a838a80 - Add support for FreeBSD 8 which is recently forked from FreeBSD 7. by Hye-Shik Chang · 18 years ago
- dd1a846 Fix new pop() method on os.environ on ignorecase-platforms. by Georg Brandl · 18 years ago
- 1e45f80 1. Add comments to provide top-level documentation. by Kurt B. Kaiser · 18 years ago
- aa8a96a Correct an ancient bug in an unused path by removing that path: register() is by Kurt B. Kaiser · 18 years ago
- 1a94ec2 Bug #1287: make os.environ.pop() work as expected. by Georg Brandl · 18 years ago
- e7becc5 Added unittest for calling a function with paramflags (backport from py3k branch). by Thomas Heller · 18 years ago
- f5ade63 Issue 1290. CharacterData.__repr__ was constructing a string by Facundo Batista · 18 years ago
- bababa3 Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__() by Vinay Sajip · 18 years ago
- 01a0957 Shorter name for namedtuple() by Raymond Hettinger · 18 years ago
- 910ab50 Issue 1307 by Derek Shockey, fox the same bug for RCPT. Neal: please backport! by Guido van Rossum · 18 years ago
- 8feafab Add phuang patch from Issue 708374 which adds offset parameter to mmap module. by Travis E. Oliphant · 18 years ago
- 5e81270 Issue #1307, patch by Derek Shockey. by Guido van Rossum · 18 years ago
- fa61797 Remove duplicate crasher. by Georg Brandl · 18 years ago
- 1486182 Add a crasher for the long-standing issue with closing a file by Armin Rigo · 18 years ago
- 9b5e231 The constructor from tuple was way too permissive: it allowed bad by Facundo Batista · 18 years ago
- 87fc9ad squelch the warning that this test is supposed to trigger. by Gregory P. Smith · 18 years ago
- 3ef21cb A cleaner fix than the one committed last night. Generate random rowids that by Gregory P. Smith · 18 years ago
- f8a2a0b Fix a weird bug in dbtables: if it chose a random rowid string that contained by Gregory P. Smith · 18 years ago
- afed3a4 cleanup test_dbtables to use mkdtemp. cleanup dbtables to pass txn as a by Gregory P. Smith · 18 years ago
- 7066590 Issue #1580738. When HTTPConnection reads the whole stream with read(), by Facundo Batista · 18 years ago
- a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 18 years ago
- abfd8df More docs, error messages, and tests by Raymond Hettinger · 18 years ago
- 050afbf Improve error messages by Raymond Hettinger · 18 years ago
- ec56019 test_bigbits was not testing what it seemed to. by Armin Rigo · 18 years ago
- d29f1d2 Use unittest for assertions by Neal Norwitz · 18 years ago
- 3884690 Don't raise a string exception, they don't work anymore. by Neal Norwitz · 18 years ago
- 880605a Let the O/S supply a port if none of the default ports can be used. by Neal Norwitz · 18 years ago
- 5d743fd Fix an uncollectable reference leak in bsddb.db.DBShelf.append by Gregory P. Smith · 18 years ago
- d40f126 Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append by Gregory P. Smith · 18 years ago
- 3a0de08 Fix test of count.__repr__() to ignore the 'L' if the count is a long by Raymond Hettinger · 18 years ago
- 7fee6dd On OS X, use os.uname() instead of gestalt.sysv(...) to get the by Thomas Heller · 18 years ago
- 631fee6 show paste if > 80 columns. Patch 1659326 Tal Einat. by Kurt B. Kaiser · 18 years ago
- cca976b Allow cursor color change w/o restart. Patch 1725576 Tal Einat. by Kurt B. Kaiser · 18 years ago
- 6899586 Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques. by Raymond Hettinger · 18 years ago
- c8f65e6 Allow interrupt only when executing user code in subprocess by Kurt B. Kaiser · 18 years ago
- b7de61b Use the highest cPickle protocol in bsddb.dbshelve. This comes from by Gregory P. Smith · 18 years ago
- 10bed54 Fix a double free when positioning a database cursor to a non-existant by Gregory P. Smith · 18 years ago
- 163f622 Make the error messages more specific by Raymond Hettinger · 18 years ago
- a48a299 Eliminate camelcase function name by Raymond Hettinger · 18 years ago
- 0e1d606 Better variable names by Raymond Hettinger · 18 years ago
- 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 18 years ago
- a970c22 Update docstring of sched, also remove an unused assignment. by Georg Brandl · 18 years ago
- 92abad2 Ensure that this test will pass even if another test left an unwritable TESTFN. by Neal Norwitz · 18 years ago
- 71e4fb5 Use the host the author likely meant in the first place. pop.gmail.com is by Gregory P. Smith · 18 years ago
- a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 18 years ago
- e3fde8f configDialog cleanup. Patch 1730217 Tal Einat. by Kurt B. Kaiser · 18 years ago
- d5f4910 textView cleanup. Patch 1718043 Tal Einat. by Kurt B. Kaiser · 18 years ago
- 0b634ef Clean up EditorWindow close. by Kurt B. Kaiser · 18 years ago
- 85897c9 Remove unused theme that was causing a fault in p3k. by Kurt B. Kaiser · 18 years ago
- 67bd62f Assume that the user knows when he wants to end the line; don't insert by Kurt B. Kaiser · 18 years ago
- 50e90e2 itertools.count() no longer limited to sys.maxint. by Raymond Hettinger · 18 years ago
- be6c7ba Added a class to store the digits of log(10), so that they can be made by Facundo Batista · 18 years ago
- 1a191df Made the various is_* operations return booleans. This was discussed by Facundo Batista · 18 years ago
- c537881 Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time. by Vinay Sajip · 18 years ago
- 66ba9ff Minor date change. by Vinay Sajip · 18 years ago
- 90d9361 Change to basicConfig() to fix #1021. by Vinay Sajip · 18 years ago
- 4df367c Change to flush and close logic to fix #1760556. by Vinay Sajip · 18 years ago
- 9b91567 #1177: accept 2xx responses for https too, not only http. by Georg Brandl · 18 years ago
- ad8fb0d Patch # 188 by Philip Jenvey. by Guido van Rossum · 18 years ago
- 4a21268 Patch #1181: add os.environ.clear() method. by Georg Brandl · 18 years ago
- aff85e2 Patch #1541463: optimize performance of cgi.FieldStorage operations. by Georg Brandl · 18 years ago
- 8c20244 Issue #1772851. Optimization of __hash__ to behave better for big big numbers. by Facundo Batista · 18 years ago
- b3e6e8c Fix obvious typo in threaded test. by Thomas Wouters · 18 years ago
- d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 18 years ago
- a1afbf6 issue1177: Ported Facundo's from urllib2 to urllib, accepting 2xx responses. by Sean Reifscheider · 18 years ago
- cce8df2 Speed up of the various division operations (remainder, divide, by Facundo Batista · 18 years ago
- 2b03d45 Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people can see how it works. by Raymond Hettinger · 18 years ago
- f09597c issue1082: Fixing platform and system for Vista. by Sean Reifscheider · 18 years ago
- 6c398da The methods always return Decimal classes, even if they're by Facundo Batista · 18 years ago
- d36a60e Sync-up named tuples with the latest version of the ASPN recipe. by Raymond Hettinger · 18 years ago
- bf10c47 use binary mode when reading files for testAsyncore to make Windows happy by Bill Janssen · 18 years ago
- 296a59d Add support for asyncore server-side SSL support. This requires by Bill Janssen · 18 years ago
- a7f49f7 ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris. by Thomas Heller · 18 years ago
- bd2fe83 Put the parameter watchexp back in (changed watchexp from an int by Facundo Batista · 18 years ago
- 353750c Merged the decimal-branch (revisions 54886 to 58140). Decimal is now by Facundo Batista · 18 years ago
- aef205d #1120: put explicit version in the shebang lines of pydoc, idle by Georg Brandl · 18 years ago
- 8fd3ecf Bug #1153: repr.repr() now doesn't require set and dictionary items by Georg Brandl · 18 years ago
- c28d5fb root certificate for https://svn.python.org/, used in test_ssl by Bill Janssen · 18 years ago
- 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 18 years ago
- 0b71202 Disable some tests that fail on the 'ppc Debian unstable' buildbot to by Thomas Heller · 18 years ago
- 1df42b1 Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056) by Nick Coghlan · 18 years ago
- e3f1d7d Make sure test_ssl doesn't reference the ssl module in a by Bill Janssen · 18 years ago
- 119c7a6 A better way of finding an open port to test with. by Bill Janssen · 18 years ago
- b559113 Patch # 1026 by Benjamin Aranguren (with Alex Martelli): by Guido van Rossum · 18 years ago