- 4147216 make StringIO like other file objects in that readline(-1) has no effect #7348 by Benjamin Peterson · 16 years ago
- 4895af4 fix the ignoring of __cmp__ method on metaclasses #7491 by Benjamin Peterson · 16 years ago
- 2a08b42 Add NEWS entry as per RDM's suggestion (the bug was actually present by Antoine Pitrou · 16 years ago
- 3e6eb59 add 2.6.x point releases by Benjamin Peterson · 16 years ago
- 92ca756 Issue #7357: No longer suppress fatal extraction errors by default. by Lars Gustäbel · 16 years ago
- 5f429e0 account for PyObject_IsInstance's new ability to fail by Benjamin Peterson · 16 years ago
- c169c78 Issue #7466: segmentation fault when the garbage collector is called by Antoine Pitrou · 16 years ago
- 9be87bc Issue #3366: Add lgamma function to math module. by Mark Dickinson · 16 years ago
- 5cc4e2a Issue #7470: logging: fix bug in Unicode encoding fallback. by Vinay Sajip · 16 years ago
- 6c4847f using an existing file to avoid dealing with a sleep to test file ages by Tarek Ziadé · 16 years ago
- 1bd9b5e added test coverage for distutils.dep_util, and cleaned up the module by Tarek Ziadé · 16 years ago
- fd25634 Replace the size check for PyMem_MALLOC and PyMem_REALLOC with an almost by Mark Dickinson · 16 years ago
- 9fa9a0d Fix an issue with the detection of a non-existing SDK by Ronald Oussoren · 16 years ago
- a5fd24e Add a reverse() method to collections.deque(). by Raymond Hettinger · 16 years ago
- 0b3263b Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 16 years ago
- 5fb8770 substitute PyDict_Check() for PyObject_IsInstance by Benjamin Peterson · 16 years ago
- d4e31a4 Skip new imaplib SSL tests if ssl is not available. by R. David Murray · 16 years ago
- 93321f3 Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is by R. David Murray · 16 years ago
- 29dcdab Make test_pipes a little bit more robust. by Antoine Pitrou · 16 years ago
- ca173e2 Fix transient refleaks in test_urllib. Thanks to Florent Xicluna. by Antoine Pitrou · 16 years ago
- 8c54e78 Fix the transient refleaks in test_zipimport_support. by Antoine Pitrou · 16 years ago
- a254302 Fix for issue 7452: HAVE_GCC_ASM_FOR_X87 gets set when doing a universal build on by Ronald Oussoren · 16 years ago
- 187177f Issue #6986: Fix crash in the JSON C accelerator when called with the by Antoine Pitrou · 16 years ago
- 4b7f943 removed the usage of rfc822 in favor of email.message.Message by Tarek Ziadé · 16 years ago
- a939ecd Issue #7457: added a read_pkg_file method to distutils.dist.DistributionMetadata so we can read back PKG-INFO files by Tarek Ziadé · 16 years ago
- 8f254e7 Typo fix; grammar fix by Andrew M. Kuchling · 16 years ago
- a4a04d1 fix test_parser from tokenizer tweak by Benjamin Peterson · 16 years ago
- add792f Add UUIDs for 2.7. Drop UUIDs for 2.4. by Martin v. Löwis · 16 years ago
- bd1094a logging: Improved support for SMTP over TLS. by Vinay Sajip · 16 years ago
- 4830566 logging: Added optional 'secure' parameter to SMTPHandler. by Vinay Sajip · 16 years ago
- 42d6384 rewrite translate_newlines for clarity by Benjamin Peterson · 16 years ago
- 4f38317 Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field by Tarek Ziadé · 16 years ago
- 3513c87 fix date by Benjamin Peterson · 16 years ago
- 4f51baf post release version bump by Benjamin Peterson · 16 years ago
- d2bdd50 tag 2.7 alpha 1 by Benjamin Peterson · 16 years ago
- d78cec5 bump version to 2.7a1 by Benjamin Peterson · 16 years ago
- 3b94c0b move RPM spec for 2.7 by Benjamin Peterson · 16 years ago
- c0321aa regenerate pydoc_topics by Benjamin Peterson · 16 years ago
- 2628590 Add missing issue number in Misc/NEWS entry. by Mark Dickinson · 16 years ago
- 1691025 Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). by Mark Dickinson · 16 years ago
- 820b0ea Issue 7431: use TESTFN in test_linecache instead of trying to create a by R. David Murray · 16 years ago
- 6420172 Add Christoph Gohlke, for the issue 4120 work. by Martin v. Löwis · 16 years ago
- c218a2f Issue #4120: Drop reference to CRT from manifest when building by Martin v. Löwis · 16 years ago
- 3dc2541 Issue #6985: number of range() items should be constrained to lie by Mark Dickinson · 16 years ago
- 91c12eb disable pymalloc tricks with the --with-valgrind option #2422 by Benjamin Peterson · 16 years ago
- 0299d0d actually close files by Philip Jenvey · 16 years ago
- 2627553 #7177: clarify the potential PIPE deadlock warnings by Philip Jenvey · 16 years ago
- 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 16 years ago
- f2bf0d2 Issue #4482: Add tests for special float value formatting. by Eric Smith · 16 years ago
- 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 16 years ago
- 5a73ff8 Markup fixes by Andrew M. Kuchling · 16 years ago
- d728871 #7419: Fix a crash on Windows in locale.setlocale() when the category by Amaury Forgeot d'Arc · 16 years ago
- 7072f74 Fix for issue #7416: SIZEOF_UINTPTR_T can be invalid when configuring a by Ronald Oussoren · 16 years ago
- 117a899 Add dtoa.c and dtoa.h to the relevant project files. by Mark Dickinson · 16 years ago
- 2ef9e8c Update project file for new file: dtoa.c by Raymond Hettinger · 16 years ago
- 9b4197b Handle step values other than one. by Raymond Hettinger · 16 years ago
- e09f45a Issue 7410: deepcopy of itertools.count resets the count by Raymond Hettinger · 16 years ago
- d46430b now that deepcopy can handle instance methods, this hack can be removed #7409 by Benjamin Peterson · 16 years ago
- a5076a2 Fixed #7408: dropped group ownership checking because it relies on os-specific rules by Tarek Ziadé · 16 years ago
- c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 16 years ago
- ccc690d Issue #1678380: When distinguishing between -0.0 and 0.0 in by Mark Dickinson · 16 years ago
- d16f57b Issue #1515: Enable use of deepcopy() with instance methods. Patch by Robert Collins. by Antoine Pitrou · 16 years ago
- c63392c Multiprocessing configure checks don't need LIBM by Mark Dickinson · 16 years ago
- 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 16 years ago
- 8d8f874 Fix versions and spacing. by Georg Brandl · 16 years ago
- 5afa6d4 Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORES by Mark Dickinson · 16 years ago
- 761ae0b fix typo by Gregory P. Smith · 16 years ago
- 01801d1 Issue #7403: Fixed possible race condition in lock creation. by Vinay Sajip · 16 years ago
- 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 16 years ago
- bf4a5fc Add ACKS entry for Pablo Mouzo by Antoine Pitrou · 16 years ago
- acbe3bd Issue #6845: Add restart support for binary upload in ftplib. The by Antoine Pitrou · 16 years ago
- 2600a33 #7400: typo. by Georg Brandl · 16 years ago
- 2dab865 When open_urlresource() fails, HTTPException is another possible error by Antoine Pitrou · 16 years ago
- 0306894 Fix typo. by Martin v. Löwis · 16 years ago
- e236c3c Forgot to add a `versionadded` tag by Antoine Pitrou · 16 years ago
- bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 16 years ago
- 0d9f61a Add mktime_tz to __all__. It's documented as being available in email.utils. by Barry Warsaw · 16 years ago
- 42d26d9 Merged revisions 76160-76161,76250,76252,76447,76506 via svnmerge from by Benjamin Peterson · 16 years ago
- 2ed8813 logging: Issue 6615: Changed handler prepend to append. by Vinay Sajip · 16 years ago
- 17e94e0 logging: made _handlers a WeakValueDictionary. by Vinay Sajip · 16 years ago
- c470d68 Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch. by Vinay Sajip · 16 years ago
- 889d9645 Issue #7228: Fix format mismatch when printing something of type off_t. by Mark Dickinson · 16 years ago
- 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 16 years ago
- 1d2c16d Made logging classes new-style and added name property to handlers. by Vinay Sajip · 16 years ago
- 3e53549 Issue #7117: Update float formatting testcases to match those in py3k. by Mark Dickinson · 16 years ago
- 6b87f11 Fix some documentation examples involving the repr of a float. by Mark Dickinson · 16 years ago
- 9a03f2f comment out test added in r76438, which caused refleaks by Jesse Noller · 16 years ago
- bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 16 years ago
- 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
- faa2599 #7345: fix arguments of formatyear(). by Georg Brandl · 16 years ago
- 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
- 5c456e6 Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab by Senthil Kumaran · 16 years ago
- f058d2d Issue #7369: Fibonacci series should start at 0 in tutorial example. by Mark Dickinson · 16 years ago
- e13dc3e Issue #7379: Fix incorrect doctest for Fraction.limit_denominator. by Mark Dickinson · 16 years ago
- 12adc65 Add a testcase that checks if the TarFile constructor successfully by Lars Gustäbel · 16 years ago
- dd866d5 Issue #6123: Fix opening empty archives and files. by Lars Gustäbel · 16 years ago
- 814d02d issue6615: Additional test for logging support in multiprocessing by Jesse Noller · 16 years ago
- 7bdd8d9 revert unintended change to multiprocessing/queues.py by Jesse Noller · 16 years ago
- 6c37674 issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing. by Jesse Noller · 16 years ago
- c4920e8 Issue #7272: Add configure test to detect whether sem_open works by Mark Dickinson · 16 years ago