- 8adc0b5 Fix recently introduced test cases. by Kristján Valur Jónsson · 17 years ago
- 018760e Re-enable all tests for windows platforms. by Kristján Valur Jónsson · 17 years ago
- afd112b Add tests for __init__() and update() with no args. by Raymond Hettinger · 17 years ago
- 717c083 fix test_xmlrpc failures #4939 by Benjamin Peterson · 17 years ago
- b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 17 years ago
- b24c951 Use assertRaises. by Georg Brandl · 17 years ago
- dd53e11 ast.literal_eval can properly evaluate complex numbers now. This fixes issue4907. by Armin Ronacher · 17 years ago
- 2d21d50 Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard(). by Raymond Hettinger · 17 years ago
- 35288c6 Speed-up __repr__. Eliminate duplicate tests. Use a from-irmport. by Raymond Hettinger · 17 years ago
- 783d73f Fixup and simplify docstrings and doctests. by Raymond Hettinger · 17 years ago
- aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 17 years ago
- a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
- f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
- 1c62b65 Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module. by Kristján Valur Jónsson · 17 years ago
- b5bc33c Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size. by Raymond Hettinger · 17 years ago
- 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 17 years ago
- 164b045 make tests fail if they can't be imported by Benjamin Peterson · 17 years ago
- da62f81 Remove an unnecessary check from test_decimal. by Mark Dickinson · 17 years ago
- 43723e2 - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on by Matthias Klose · 17 years ago
- b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 17 years ago
- 0e2d8c3 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 17 years ago
- 84040db Issue 4336: Let users of HTTPConnection.endheaders() submit a message body to the function if required. by Kristján Valur Jónsson · 17 years ago
- 7e876f5 Issue 4336: HTTPRequest._send_output() now deals with the case of the message body not being a string. This allows clients to use endheaders(message_body) instead of endheaders() + send(message_body) without making any extra checks. by Kristján Valur Jónsson · 17 years ago
- 25f221b Merged revisions 68306-68308,68340,68368,68422 via svnmerge from by Benjamin Peterson · 17 years ago
- 1a240fb fixed #4394 make the storage of the password optional in .pypirc by Tarek Ziadé · 17 years ago
- 5b913e3 Forward port r68394 for issue 4816. by Raymond Hettinger · 17 years ago
- e6dc531 Issue #4869: clarify documentation for random.expovariate. by Mark Dickinson · 17 years ago
- fde5b80 Issue #4864: test_msvc9compiler failed on VC6/7. by Hirokazu Yamamoto · 17 years ago
- 09cafb6 Use shutil.rmtree rather than os.rmdir. by Antoine Pitrou · 17 years ago
- e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 17 years ago
- f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 17 years ago
- 65808ff More Python 2.3 compatibility fixes for decimal.py. by Mark Dickinson · 17 years ago
- 6a96163 Fix Decimal.from_float to use valid Python 2.3 syntax, as per by Mark Dickinson · 17 years ago
- d81780b using clearer syntax by Tarek Ziadé · 17 years ago
- 85d6fb5 fixed #1702551: distutils sdist was not pruning VCS directories under win32 by Tarek Ziadé · 17 years ago
- fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 17 years ago
- b7e835b Reapply r68191. by Raymond Hettinger · 17 years ago
- f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 17 years ago
- 37fc823 Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 via svnmerge from by Benjamin Peterson · 17 years ago
- 4aa04db Issue #4812: further renaming of internal Decimal constants, for clarity. by Mark Dickinson · 17 years ago
- c5de096 Issue #4812: add missing underscore prefix to some internal-use-only by Mark Dickinson · 17 years ago
- 44e1581 Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 17 years ago
- 072bb40 Fix for issues #841800 and #900506 by Ronald Oussoren · 17 years ago
- abcc168 Fix for issue 1149804 by Ronald Oussoren · 17 years ago
- 919697c Fix for issue r1737832 by Ronald Oussoren · 17 years ago
- 7f8cbf0 Fix for issue 1627952 by Ronald Oussoren · 17 years ago
- 63b74fe Fix for issue 900949 by Ronald Oussoren · 17 years ago
- 0238497e Fix for issue1594 by Ronald Oussoren · 17 years ago
- 8c95484 Fix for issue3559: No preferences menu in IDLE on OSX by Ronald Oussoren · 17 years ago
- 733dc74 fill in actual issue number in tests by Antoine Pitrou · 17 years ago
- aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
- 6269fec #4228: Pack negative values the same way as 2.4 in struct's L format. by Georg Brandl · 17 years ago
- 775c307 #4222: document dis.findlabels() and dis.findlinestarts() and by Georg Brandl · 17 years ago
- 2adde05 #4185: clarify escape behavior of replacement strings. by Georg Brandl · 17 years ago
- 6060d5e simplfy code by Benjamin Peterson · 17 years ago
- 8ad09a4 #4795 inspect.isgeneratorfunction() should return False instead of None by Benjamin Peterson · 17 years ago
- 941db4d fix name collision issues by Benjamin Peterson · 17 years ago
- 43ea6d9 #4788 qualify some bare except clauses by Benjamin Peterson · 17 years ago
- b1a8541 Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC is not found by Tarek Ziadé · 17 years ago
- 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
- c13acb1 fixed #4646 : distutils was choking on empty options arg in the setup function. by Tarek Ziadé · 17 years ago
- 7af6556 #4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
- fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
- 732479f Issue #3767: Convert Tk object to string in tkColorChooser. by Martin v. Löwis · 17 years ago
- e2eb2b4 Issue #3248: Allow placing ScrolledText in a PanedWindow. by Martin v. Löwis · 17 years ago
- 88a3083 Update the fix for issue4064 to deal correctly with all three variants of by Ronald Oussoren · 17 years ago
- 4b48c61 Issue4064: architecture string for universal builds on OSX by Ronald Oussoren · 17 years ago
- dae1a6a Issue #2153: modernize coding style of unittest.py, remove obsolete compatibility stuff. by Antoine Pitrou · 17 years ago
- 697ca3d Issue #4444: Allow assertRaises() to be used as a context handler. by Antoine Pitrou · 17 years ago
- 6425a2f Backport r67974: by Georg Brandl · 17 years ago
- 3eef441 Follow-up to r67746 in order to restore backwards-compatibility for by Georg Brandl · 17 years ago
- 8d5934b #4748 lambda generators shouldn't return values by Benjamin Peterson · 17 years ago
- c3a9803 Patch #4739 by David Laban: add symbols to pydoc help topics, by Georg Brandl · 17 years ago
- 6f193e0 Issue #4756: zipfile.is_zipfile() now supports file-like objects. by Antoine Pitrou · 17 years ago
- e57e999 Fix bogus unicode tests in pickletester. by Alexandre Vassalotti · 17 years ago
- f852bf9 Fix issue #4730: cPickle corrupts high-unicode strings. by Alexandre Vassalotti · 17 years ago
- 0fc0747 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. by Hirokazu Yamamoto · 17 years ago
- e4c75bb fixed #4400 : distutils .pypirc default generated file was broken. by Tarek Ziadé · 17 years ago
- 54686e3 #4736 BufferRWPair.closed shouldn't try to call another property as a function by Benjamin Peterson · 17 years ago
- f205c13 As a result of a regression that snuck into 2.5.3 add a test case that by Skip Montanaro · 17 years ago
- f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 17 years ago
- 03943d9 Merged revisions 67809 via svnmerge from by Benjamin Peterson · 17 years ago
- 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 17 years ago
- d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 17 years ago
- 43caaa0 Merged revisions 67427,67431,67433,67435,67630,67652,67656-67657,67674-67675,67678-67679,67705-67706,67716,67723,67765-67771,67774,67776,67778 via svnmerge from by Benjamin Peterson · 17 years ago
- 31949b9 #3954: Fix error handling code in _hotshot.logreader by Amaury Forgeot d'Arc · 17 years ago
- 6806001 Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by giving linecache access to the module globals when available by Nick Coghlan · 17 years ago
- 2d2fe57 #4578: fix has_key() usage in compiler package. by Georg Brandl · 17 years ago
- cc5b64a modify other occurrence of test_bad_address by Antoine Pitrou · 17 years ago
- 122388a try to fix failure in test_bad_address on some buildbots by Antoine Pitrou · 17 years ago
- 655fbf1 Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). by Antoine Pitrou · 17 years ago
- bbba3f0 Add file that was missed from r67750 by Nick Coghlan · 17 years ago
- a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 17 years ago
- 3e16f3d remove has_key usage by Benjamin Peterson · 17 years ago
- 74af3bb Issue #4163: Use unicode-friendly word splitting in the textwrap functions when given an unicode string. by Antoine Pitrou · 17 years ago
- 3b02742 Issue #4616: TarFile.utime(): Restore directory times on Windows. by Lars Gustäbel · 17 years ago
- e29d435 Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to by Facundo Batista · 17 years ago
- 240028c #1030250: correctly pass the dry_run option to the mkpath() function. by Amaury Forgeot d'Arc · 17 years ago
- ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 17 years ago
- 1868d7c Add simple unittests for Request by Jeremy Hylton · 17 years ago