- 22c42ba Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. by Collin Winter · 18 years ago
- dbead56 * Unlink test files before and after each test; hopefully this will cut down on recent buildbot failures in test_islink. by Collin Winter · 18 years ago
- 9453e5d Hashing simplification pointed out by Thomas Wouters. by Collin Winter · 18 years ago
- 2456a3c Bug #1651235: When a tuple was passed to a ctypes function call, by Thomas Heller · 18 years ago
- e38051d Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError. by Collin Winter · 18 years ago
- c2f7725 Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) by Thomas Heller · 18 years ago
- 1190a38 Patch #957003: Implement smtplib.LMTP. by Martin v. Löwis · 18 years ago
- 83b2bf6 Patch #1481079: Support of HTTP_REFERER in CGIHTTPServer.py by Collin Winter · 18 years ago
- a30fcb4 Introduce test.test_support.TransientResource. It's a context manager to by Brett Cannon · 18 years ago
- 9b2a109 Patch #1668482: don't use '-' in mkstemp by Collin Winter · 18 years ago
- 0e520b4 SF #1637850: make_table in difflib did not work with unicode by Raymond Hettinger · 18 years ago
- 5545314 Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctest2 higher up in the testing order. by Collin Winter · 18 years ago
- 8b188e6 SF 1676321: empty() returned wrong result by Raymond Hettinger · 18 years ago
- f1200f8 Windows doesn't support negative timestamps. Skip the tests involving them by Guido van Rossum · 18 years ago
- d9e5026 Add some sanity checks to unittest.TestSuite's addTest(s) methods. by Georg Brandl · 18 years ago
- 9decc0d Patch #1675471: convert test_pty to unittest. by Georg Brandl · 18 years ago
- 05c075d Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). by Martin v. Löwis · 18 years ago
- d0a9625 Patch #787789: allow to pass custom TestRunner instances to unittest's by Georg Brandl · 18 years ago
- 15c5ce9 Patches #1550273, #1550272: fix a few bugs in unittest and add a by Georg Brandl · 18 years ago
- 71ff646 Patch #1001604: glob.glob() now returns unicode filenames if it was by Georg Brandl · 18 years ago
- 172e725 Patch #812285: allow multiple auth schemes in AbstractBasicAuthHandler. by Georg Brandl · 18 years ago
- d391f08 Patch for bug #1633621: if curses.resizeterm() or by Walter Dörwald · 18 years ago
- 40c6261 Patch #1654417: make operator.{get,set,del}slice use the full range by Georg Brandl · 18 years ago
- 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
- cff1ae3 Small nit, found by Neal. by Georg Brandl · 18 years ago
- 2054ee9 Patch #1646728: datetime.fromtimestamp fails with negative by Guido van Rossum · 18 years ago
- ab8a6bb Patch #912410: Replace HTML entity references for attribute values by Martin v. Löwis · 18 years ago
- ff432e6 Patch #1663234: you can now run doctest on test files and modules by Georg Brandl · 18 years ago
- 7236303 A test case for the defaultdict KeyError bug. by Georg Brandl · 18 years ago
- d53d951 Patch #1672481: fix bug in idlelib.MultiCall. by Georg Brandl · 18 years ago
- 3071a1a A test case for the fix in #1674228. by Georg Brandl · 18 years ago
- 3eb7648 Patch #1121142: Implement ZipFile.open. by Martin v. Löwis · 18 years ago
- 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
- ca90ca8 Minor corrections to docs, and an explanation comentary by Facundo Batista · 18 years ago
- 8905bb1 Fix a bug in test_dict and test_userdict, found at the PyPy sprint. by Georg Brandl · 18 years ago
- 20e1199 Fix embarrassing typo and fix constantification of None by Raymond Hettinger · 18 years ago
- 117a05e Bug #1628895: some better tries to find HTML documentation in pydoc. by Georg Brandl · 18 years ago
- c37e5e0 Add collections.NamedTuple by Raymond Hettinger · 18 years ago
- eb97988 Prepare collections module for pure python code entries. by Raymond Hettinger · 18 years ago
- 3035d23 Docstring nit. by Raymond Hettinger · 18 years ago
- f8267df Add a test for instantiating SyntaxError with no arguments. by Brett Cannon · 18 years ago
- adf1723 Modify the segfaulting example to show why r53997 is not a solution to it. by Armin Rigo · 18 years ago
- fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 18 years ago
- 37075c5 Fix long-standing bug in name mangling for package imports by Jeremy Hylton · 18 years ago
- 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
- 759410b Do not copy free variables to locals in class namespaces. by Jeremy Hylton · 18 years ago
- 110054c Backported r51621 from p3yk: by Thomas Wouters · 18 years ago
- 6fbb96e Refactor PEP 352 tests to make it easier in the future to make sure certain by Brett Cannon · 18 years ago
- 764cf7e Fix typo in comment by Neal Norwitz · 18 years ago
- d36862c Add itertools.izip_longest(). by Raymond Hettinger · 18 years ago
- cbac8ce Fixup docstrings for merge(). by Raymond Hettinger · 18 years ago
- 382abef Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() by Martin v. Löwis · 18 years ago
- 01b9881 Add test for merge stability by Raymond Hettinger · 18 years ago
- 45eb0f1 Use C heapreplace() instead of slower _siftup() in pure python. by Raymond Hettinger · 18 years ago
- 54da981 Add tie-breaker count to preserve sort stability. by Raymond Hettinger · 18 years ago
- 00166c5 Add merge() function to heapq. by Raymond Hettinger · 18 years ago
- d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
- f7ccc10 Minor fix for currentframe (SF #1652788). by Vinay Sajip · 18 years ago
- fa6521b Make the __import__ call in encodings.__init__ absolute with a level 0 call. by Brett Cannon · 18 years ago
- 971a012 Update the encoding package's search function to use absolute imports when by Brett Cannon · 18 years ago
- d0b6040 A missing binary mode in AppendTest caused failures in Windows Buildbot. by Lars Gustäbel · 19 years ago
- f19c1b5 Strip the '.gz' extension from the filename that is written to the gzip header. by Lars Gustäbel · 19 years ago
- 5b1a785 Patch #1647484: Renamed GzipFile's filename attribute to name. The by Lars Gustäbel · 19 years ago
- 84f6de9 Patch #1517891: Make 'a' create the file if it doesn't exist. Fixes #1514451. by Martin v. Löwis · 19 years ago
- c6d626e Patch #698833: Support file decryption in zipfile. by Martin v. Löwis · 19 years ago
- 07aa3ed Patch #685268: Consider a package's __path__ in imputil. Will backport. by Martin v. Löwis · 19 years ago
- b8d6d73 Fix the line to what is my guess at the original author's meaning. by Armin Rigo · 19 years ago
- 2bad58f Patch 1463026: Support default namespace in XMLGenerator. by Martin v. Löwis · 19 years ago
- 691acf2 fix trace.py --ignore-dir by Skip Montanaro · 19 years ago
- 0a20326 Bug #1600860: Search for shared python library in LIBDIR, not by Martin v. Löwis · 19 years ago
- 209de1f Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented; by Kurt B. Kaiser · 19 years ago
- 4c11a92 Bug #1653736: Complain about keyword arguments to time.isoformat. by Martin v. Löwis · 19 years ago
- 495df47 Fix docstring bug by Raymond Hettinger · 19 years ago
- 6d121f1 Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 19 years ago
- 4da5bf6 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 19 years ago
- 5a0217e Check for a common user error with defaultdict(). by Raymond Hettinger · 19 years ago
- 0922d71 SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 19 years ago
- 814ef23 Handle AttributeError during calltip lookup by Kurt B. Kaiser · 19 years ago
- ca30acf [ 1621265 ] Auto-completion list placement by Kurt B. Kaiser · 19 years ago
- f30ff3b narrow exception per [ 1540849 ] except too broad by Kurt B. Kaiser · 19 years ago
- 4864b2b Updated patch (CodeContext.061217.patch) to by Kurt B. Kaiser · 19 years ago
- 3f8aca1 Patch #1652681: create nonexistent files in append mode and by Lars Gustäbel · 19 years ago
- 5f9c6ae Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport. by Peter Astrand · 19 years ago
- dddeb0e Clean up ModifiedInterpreter.runcode() structure by Kurt B. Kaiser · 19 years ago
- ecf796e 1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :) by Kurt B. Kaiser · 19 years ago
- 90f8492 Add 'raw' support to configHandler. Patch 1650174 Tal Einat. by Kurt B. Kaiser · 19 years ago
- f540003 We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead. by Peter Astrand · 19 years ago
- 129bd52 No more raising of string exceptions! by Brett Cannon · 19 years ago
- f733abb7 Whitespace normalization. by Tim Peters · 19 years ago
- e05e6b0 Add a test for slicing an exception. by Brett Cannon · 19 years ago
- af3d627 Use the thread lock's context manager instead of a try/finally statement. by Brett Cannon · 19 years ago
- 4ba9e5b Patch #1634778: add missing encoding aliases for iso8859_15 and iso8859_16. by Georg Brandl · 19 years ago
- ab49684 Patch #1638243: the compiler package is now able to correctly compile by Georg Brandl · 19 years ago
- 9875ba4 Remove specific mention of my name and email address from modules. Not really by Brett Cannon · 19 years ago
- 07e1db3 Fix time.strptime's %U support. Basically rewrote the algorithm to be more by Brett Cannon · 19 years ago
- 4b884a5 Port test_popen.py to unittest. by Walter Dörwald · 19 years ago
- f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 19 years ago
- d2e2290 Patch #1507247: tarfile.py: use current umask for intermediate directories. by Lars Gustäbel · 19 years ago
- e498083 Bug #1627316: handle error in condition/ignore pdb commands more gracefully. by Georg Brandl · 19 years ago
- 6263495 Bug #1249573: fix rfc822.parsedate not accepting a certain date format by Georg Brandl · 19 years ago