- 13 Mar, 2007 12 commits
-
-
Georg Brandl authored
pydoc's help keywords.
-
Georg Brandl authored
concatenation in robotparser.
-
Georg Brandl authored
field names in its exception message if you try to write a record with a dictionary containing fields not in the CSV field names list.
-
Georg Brandl authored
OSError if accessing a local file via the file:// protocol fails.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Neal Norwitz authored
* lines too long * wrong indentation * space after a function name * wrong function name in error string * simplifying some logic Also add an error check to PyDict_SetItemString.
-
Neal Norwitz authored
Brian Leair - 922167 Tomer Filiba - 15916658 Jeremy Jones - 1192590
-
Neal Norwitz authored
-
Brett Cannon authored
-
Brett Cannon authored
nests test.test_support.TransientResource context managers that capture exceptions raised when the Internet connection is flaky. Initially using in test_socket_ssl but should probably be expanded to cover any test that should not raise the captured exceptions if the Internet connection works.
-
- 12 Mar, 2007 13 commits
-
-
Tim Peters authored
-
Tim Peters authored
-
Collin Winter authored
-
Georg Brandl authored
-
Collin Winter authored
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. Will backport.
-
Collin Winter authored
-
Georg Brandl authored
case, even when converting the value to a string failed.
-
Georg Brandl authored
Patch #15916658: implement the __dir__() special function lookup in PyObject_Dir. Had to change a few bits of the patch because classobjs and __methods__ are still in Py2.6.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Skip Montanaro authored
that given the inputs in these tests Excel does indeed produce the output these tests expect. Document that for future confused folks.
-
Barry Warsaw authored
display name of an email address, e.g. Foo \tBar <foo@example.com> Test case added by Barry.
-
Collin Winter authored
stable FTP. Will backport.
-
- 11 Mar, 2007 4 commits
-
-
Vinay Sajip authored
-
Collin Winter authored
Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the IndexError caused by passing in an invalid breakpoint number. Will backport.
-
Žiga Seilnacht authored
__dict__ and __weakref__ are removed from the slots tuple earlier in the code, in the loop that mangles slot names. Will backport.
-
Georg Brandl authored
-
- 10 Mar, 2007 7 commits
-
-
Collin Winter authored
Patch #1599845: Add an option to disable the implicit calls to server_bind() and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer and DocXMLRPCServer.
-
Collin Winter authored
-
Georg Brandl authored
-
Collin Winter authored
-
Neal Norwitz authored
Update to use predominant style of spaces around = in args list and print to stderr if debugging.
-
Collin Winter authored
Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. Will backport.
-
Collin Winter authored
* Unlink test files before and after each test; hopefully this will cut down on recent buildbot failures in test_islink. * Drop safe_remove() in favor of test_support.unlink(). * Fix the indentation of test_samefile so that it runs.
-
- 09 Mar, 2007 4 commits
-
-
Collin Winter authored
-
Thomas Heller authored
Python would crash instead of raising an error. The crash was caused by a section of code that should have been removed long ago, at that time ctypes had other ways to pass parameters to function calls.
-
Collin Winter authored
Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError.
-
Martin v. Löwis authored
-