- 7bb30b7 Improve Pydoc interactive browsing (#2001). Patch by Ron Adam. by Nick Coghlan · 15 years ago
- f8de3fe #10360: catch TypeError in WeakSet.__contains__, just like WeakKeyDictionary does. by Georg Brandl · 15 years ago
- d80d5f4 #940286: pydoc.Helper.help() ignores input/output init parameters. by Georg Brandl · 15 years ago
- 4c4c0f2 Partially revert r78719 - it removed a check that is still needed in some cases (i.e. this will allow Michael to add the test.__main__ support that broke the buildbots previously) by Nick Coghlan · 15 years ago
- 1e5c5f8 #1745035: add limits for command and data size to smtpd; patch by Savio Sena. by Georg Brandl · 15 years ago
- b579dba #1486713: Add a tolerant mode to HTMLParser. by R. David Murray · 15 years ago
- 79cdb66 Fix #10554. Added context manager support to Popen objects. by Brian Curtin · 15 years ago
- 2d93e6e Update the itertools.accumulate() docs. by Raymond Hettinger · 15 years ago
- 240f112 Remove test/__main__.py until runpy tests can be fixed by Michael Foord · 15 years ago
- d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 15 years ago
- a7a0e1a Set test.regrtest.TEMPDIR correctly when run with 'python -m test' by Michael Foord · 15 years ago
- e2befc1 Initial implementation of Lib/test/__main__.py so we can run tests with 'python -m test' by Michael Foord · 15 years ago
- 5137d64 Fix wrong test code in test_csv (#10602) by Éric Araujo · 15 years ago
- 52173d4 Fix #9333. Expose os.symlink on Windows only when usable. by Brian Curtin · 15 years ago
- 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 15 years ago
- 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 15 years ago
- b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 15 years ago
- d2bb830 #10464: fix netrc handling of lines with embedded '#" characters. by R. David Murray · 15 years ago
- f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. by Alexander Belopolsky · 15 years ago
- 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 15 years ago
- 2f9a77a Reverted unintended change from r86916 by Alexander Belopolsky · 15 years ago
- 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 15 years ago
- c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 15 years ago
- ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 15 years ago
- c0abc4e Fix #10591. Fix test_os for refleak runs. by Brian Curtin · 15 years ago
- 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 15 years ago
- f498b75 Actually fix what I attempted to fix in r86888... by Brian Curtin · 15 years ago
- 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 15 years ago
- 43f0c27 Try to fix failures on platforms that can't encode the test characters. by Brian Curtin · 15 years ago
- 7921b9f Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite by Nick Coghlan · 15 years ago
- 234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. by Nick Coghlan · 15 years ago
- ff27ee0 Issue #10572: Moved json tests to Lib/test/json_tests. by Alexander Belopolsky · 15 years ago
- 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 15 years ago
- 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 15 years ago
- ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 15 years ago
- 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 15 years ago
- fc889c4 Fix for #8879. by Brian Curtin · 15 years ago
- e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 15 years ago
- 1f75f5d Fixed deprecation warnings. by Alexander Belopolsky · 15 years ago
- 31717e8 #10453 follow-up: Fix test_quiet on Windows, thanks to Stephan Krah. by Éric Araujo · 15 years ago
- 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 15 years ago
- 99f9637 Issue 2986: Add autojunk paramater to SequenceMatcher to turn off heuristic. Patch by Terry Reedy, Eli Bendersky, and Simon Cross by Terry Reedy · 15 years ago
- 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 15 years ago
- a9f054b zipfile: remove remaining ResourceWarnings by Łukasz Langa · 15 years ago
- 7744e2a Fix test_multiprocessing when ctypes isn't available by Antoine Pitrou · 15 years ago
- 0662bc2 Fix tests when ctypes isn't available by Antoine Pitrou · 15 years ago
- 5cbc71e Issue #10459: Update CJK character names to Unicode 6.0. by Martin v. Löwis · 15 years ago
- c295862 Fix Issue4493 - urllib2 adds '/' to the path component of url, when it does not by Senthil Kumaran · 15 years ago
- 5cb823d Fix one compileall test (#10453). Patch by Michele Orrù. by Éric Araujo · 15 years ago
- 3bce11c Make test_nntplib more robust by Antoine Pitrou · 15 years ago
- e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 15 years ago
- a73dc9d configparser: read-only attributes to get the section name and parser from a SectionProxy instance by Łukasz Langa · 15 years ago
- 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 15 years ago
- d325c4b Revert r86517 by Raymond Hettinger · 15 years ago
- e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 15 years ago
- a491ced Try to get more useful output from failing buildbot by Éric Araujo · 15 years ago
- d57bb55 fix two broken tests by Benjamin Peterson · 15 years ago
- 8d16ab3 merge all range tests into test_range by Benjamin Peterson · 15 years ago
- 94ab7a0 enable test that was commented out for whatever reason by Benjamin Peterson · 15 years ago
- 0b458d5 count() should return integers #10474 by Benjamin Peterson · 15 years ago
- 650f147 #10453: compileall now uses argparse instead of getopt, so -h works. by R. David Murray · 15 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 15 years ago
- 5f78040 add filename to ENOENT message #4925 by Benjamin Peterson · 15 years ago
- fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 15 years ago
- 5c41787 add space by Benjamin Peterson · 15 years ago
- 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 15 years ago
- e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 15 years ago
- 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 15 years ago
- cc7ebb8 Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution by Michael Foord · 15 years ago
- c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 15 years ago
- 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 15 years ago
- 89197fe socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case. by Georg Brandl · 15 years ago
- 9f1c1dc #10465: fix broken delegation in __getattr__ of _PaddedFile. by Georg Brandl · 15 years ago
- 4ccc137 Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to by Mark Dickinson · 15 years ago
- b304d0b Fixes a timing-related failure on Windows (issue 10183) by Brian Quinlan · 15 years ago
- 722b5fd Make test class name unique so that both test classes run. by R. David Murray · 15 years ago
- 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 15 years ago
- 98b644f Fix test_ssl_presence when ssl is not present by Antoine Pitrou · 15 years ago
- de60918 Wrap all test_nntplib methods accessing a remote server in a transient_internet() by Antoine Pitrou · 15 years ago
- 6a0b5c4 Code Changes as per review comments by Antoine Pitrou. by Senthil Kumaran · 15 years ago
- daa29d0 Fix Issue2244 - urllib unquotes user and password info multiple times - Patch by Theodore Turocy by Senthil Kumaran · 15 years ago
- d8b661d Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError. by Stefan Krah · 15 years ago
- d28f790 Make test_nntplib more robust when the "last" article in a group can't be retrieved by Antoine Pitrou · 15 years ago
- 8ce1f1f Fix Issue 9991: xmlrpc client ssl check faulty by Senthil Kumaran · 15 years ago
- 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 15 years ago
- 8fb9b86 Fix #8886. Use context managers throughout the test. by Brian Curtin · 15 years ago
- a47bbf5 Issue #10446: Several changes to module documentation generated by pydoc: by Alexander Belopolsky · 15 years ago
- f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 15 years ago
- 12ae290 Use laxer timeouts in barrier tests by Antoine Pitrou · 15 years ago
- 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 15 years ago
- b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 15 years ago
- dc817b2 Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)). by Stefan Krah · 15 years ago
- dbe7519 Issue #10429: IMAP.starttls() stored the capabilities as bytes objects, by Antoine Pitrou · 15 years ago
- 36c0dbc Avoid some BytesWarnings when running test_imaplib in verbose mode by Antoine Pitrou · 15 years ago
- 74ebd9e Fix Issue5111 - Wrap the Ipv6 host with [] in the Host header by Senthil Kumaran · 15 years ago
- 5ccafba Streamline a cmath test (and fix some overlong lines into the bargain). by Mark Dickinson · 15 years ago
- fec6620 Make Fraction(-1).__hash__() return -2 rather than -1 (see issue 10356). by Mark Dickinson · 15 years ago
- 45ca987 Switch from gmane to another provider for NNTP tests (as gmane isn't reliable by Antoine Pitrou · 15 years ago
- f3b001f Issue #4471: Add the IMAP.starttls() method to enable encryption on by Antoine Pitrou · 15 years ago
- 6495136 #1466065: add validate option to base64.b64decode by R. David Murray · 15 years ago