| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #1686487: you can now pass any mapping after '**' in function calls. | Georg Brandl | 2007-05-21 | 2 | -6/+16 |
|
|
* | Added timeout support to HTTPSConnection, through the | Facundo Batista | 2007-05-21 | 2 | -5/+12 |
|
|
* | Allow all alphanumeric and underscores in type and field names. | Raymond Hettinger | 2007-05-21 | 2 | -1/+4 |
|
|
* | Replace assertion with straight error-checking. | Raymond Hettinger | 2007-05-21 | 1 | -1/+2 |
|
|
* | Cause posixfile to raise a DeprecationWarning. Documented as deprecated since | Brett Cannon | 2007-05-20 | 2 | -66/+71 |
|
|
* | Move imgfile import to the global namespace to trigger an import error ASAP to | Brett Cannon | 2007-05-20 | 1 | -4/+1 |
|
|
* | Remove the macfs module. This led to the deprecation of macostools.touched(); | Brett Cannon | 2007-05-20 | 6 | -305/+9 |
|
|
* | Remove the rgbimg module. It has been deprecated since Python 2.5. | Brett Cannon | 2007-05-20 | 3 | -100/+8 |
|
|
* | Fix docstring for add_package in site.py. | Georg Brandl | 2007-05-19 | 1 | -2/+4 |
|
|
* | Give some clue as to what happened if the test fails. | Neal Norwitz | 2007-05-19 | 1 | -1/+1 |
|
|
* | Fix beginner mistake -- don't mix spaces and tabs. | Raymond Hettinger | 2007-05-19 | 1 | -1/+1 |
|
|
* | Improvements to NamedTuple's implementation, tests, and documentation | Raymond Hettinger | 2007-05-19 | 2 | -25/+25 |
|
|
* | Backport PEP 3110's new 'except' syntax to 2.6. | Collin Winter | 2007-05-18 | 2 | -3/+3 |
|
|
* | Verify neither dumps or loads overflow the stack and segfault. | Neal Norwitz | 2007-05-18 | 1 | -1/+21 |
|
|
* | calendar.py gets no benefit from xrange() instead of range() | Raymond Hettinger | 2007-05-17 | 1 | -16/+16 |
|
|
* | Remove the gopherlib module. It has been raising a DeprecationWarning since | Brett Cannon | 2007-05-16 | 6 | -285/+2 |
|
|
* | Fix bug in marshal where bad data would cause a segfault due to | Neal Norwitz | 2007-05-16 | 1 | -0/+4 |
|
|
* | HTML-escape the plain traceback in cgitb's HTML output, to prevent | Georg Brandl | 2007-05-15 | 1 | -1/+2 |
|
|
* | Small speedup. | Raymond Hettinger | 2007-05-14 | 1 | -4/+3 |
|
|
* | Remove support for freebsd[23] which haven't been released since 2000 | Neal Norwitz | 2007-05-13 | 4 | -383/+0 |
|
|
* | Add bz2 to content encodings. | Georg Brandl | 2007-05-13 | 1 | -0/+2 |
|
|
* | Better tests for posixpath.commonprefix | Raymond Hettinger | 2007-05-11 | 1 | -0/+10 |
|
|
* | Deprecate os.popen* and popen2 module in favor of the subprocess module. | Neal Norwitz | 2007-05-11 | 7 | -27/+62 |
|
|
* | Remove trailing whitespace in docstring | Neal Norwitz | 2007-05-11 | 1 | -2/+0 |
|
|
* | Fix typo in docstring (the module is popen2, not 3). | Neal Norwitz | 2007-05-11 | 1 | -1/+1 |
|
|
* | Don't ever report a failure when the sum of the reference count differences | Neal Norwitz | 2007-05-11 | 1 | -2/+3 |
|
|
* | Fix a bug in test.test_support.open_urlresource(). | Collin Winter | 2007-05-09 | 1 | -1/+1 |
|
|
* | Deprecate BaseException.message as per PEP 352. | Brett Cannon | 2007-05-05 | 4 | -45/+106 |
|
|
* | Oops, these tests do not run on Windows CE. | Thomas Heller | 2007-05-04 | 1 | -15/+16 |
|
|
* | Do not truncate 64-bit pointers to 32-bit integers. | Thomas Heller | 2007-05-04 | 1 | -0/+27 |
|
|
* | Fix some ctypes test crashes, when running with a debug Python | Thomas Heller | 2007-05-04 | 3 | -4/+11 |
|
|
* | Fix those parts in the testsuite that assumed that sys.maxint would cause ove... | Kristján Valur Jónsson | 2007-05-03 | 5 | -12/+21 |
|
|
* | Fix for #1303614 and #1174712: | Armin Rigo | 2007-05-02 | 3 | -34/+78 |
|
|
* | Added new optional credentials argument to SMTPHandler.__init__, and smtp.log... | Vinay Sajip | 2007-05-01 | 1 | -7/+12 |
|
|
* | Patch #1710352: add missing public functions to locale.__all__. | Georg Brandl | 2007-05-01 | 1 | -3/+5 |
|
|
* | This gets the test working on Solaris. It seems a little hokey to me, | Neal Norwitz | 2007-04-27 | 1 | -0/+19 |
|
|
* | The locale "En" appears not to be valid on windows underi VisualStudio.2005. ... | Kristján Valur Jónsson | 2007-04-26 | 1 | -1/+1 |
|
|
* | Fix an issue related to the unittest conversion. | Collin Winter | 2007-04-25 | 1 | -0/+6 |
|
|
* | Convert test_ossaudiodev to use unittest. | Collin Winter | 2007-04-25 | 1 | -120/+125 |
|
|
* | Import and raise statement cleanup. | Collin Winter | 2007-04-25 | 1 | -17/+9 |
|
|
* | Change test_support.have_unicode to use True/False instead of 1/0. | Collin Winter | 2007-04-25 | 1 | -2/+2 |
|
|
* | Remove functionality from test_datetime.test_main() that does reference count... | Collin Winter | 2007-04-25 | 1 | -20/+1 |
|
|
* | Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u... | Collin Winter | 2007-04-25 | 28 | -173/+74 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 38 | -387/+386 |
|
|
* | Bug #1706381: Specifying the SWIG option "-c++" in the setup.py file | Georg Brandl | 2007-04-24 | 1 | -1/+2 |
|
|
* | Fix SF #1703110, Incorrect example for add_password() (use uri, not host) | Neal Norwitz | 2007-04-24 | 1 | -1/+4 |
|
|
* | Remove code that hasn't been called in years. | Collin Winter | 2007-04-24 | 1 | -34/+0 |
|
|
* | Convert PyUnit -> unittest. | Collin Winter | 2007-04-24 | 1 | -11/+10 |
|
|
* | As specified in RFC 2616, 2xx code indicates that the client's | Facundo Batista | 2007-04-23 | 2 | -4/+14 |
|
|
* | Added tests for other methods of SSL object. Now we cover | Facundo Batista | 2007-04-22 | 1 | -0/+15 |
|
|