| Commit message (Expand) | Author | Age | Files | Lines |
* | Import all implementations of the hash algorithms (OpenSSL & builtin) and run | Gregory P. Smith | 2010-01-03 | 1 | -10/+75 |
|
|
* | Issue #3745: Undo the requirement for new buffer API only objects to be passed | Gregory P. Smith | 2010-01-02 | 1 | -11/+16 |
|
|
* | Remove silly conditional. | Antoine Pitrou | 2010-01-02 | 1 | -4/+2 |
|
|
* | Add tests for issue #7458: str.rfind() would crash when called with an invalid | Antoine Pitrou | 2010-01-02 | 1 | -0/+6 |
|
|
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, | Antoine Pitrou | 2010-01-02 | 2 | -3/+33 |
|
|
* | Fix casing. | Georg Brandl | 2010-01-02 | 1 | -1/+1 |
|
|
* | remove use of deprecated os.popen #7619 | Benjamin Peterson | 2010-01-02 | 1 | -3/+8 |
|
|
* | Issue #5080: turn the DeprecationWarning from float arguments passed | Mark Dickinson | 2010-01-01 | 4 | -26/+30 |
|
|
* | More yearly updates. | Georg Brandl | 2010-01-01 | 10 | -11/+11 |
|
|
* | indentation and further alignment with py3k | Ezio Melotti | 2009-12-31 | 1 | -3/+3 |
|
|
* | cleanup and refactoring | Ezio Melotti | 2009-12-31 | 1 | -128/+123 |
|
|
* | Merged revisions 77158 via svnmerge from | Benjamin Peterson | 2009-12-30 | 1 | -0/+5 |
|
|
* | check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) | Benjamin Peterson | 2009-12-30 | 1 | -0/+5 |
|
|
* | Issue #7534: Fix handling of nans, infinities, and negative zero in ** | Mark Dickinson | 2009-12-30 | 2 | -2/+216 |
|
|
* | #5511: Added the ability to use ZipFile as a context manager. Patch by Brian ... | Ezio Melotti | 2009-12-30 | 2 | -489/+458 |
|
|
* | #7413: Passing '\0' as the separator to datetime.datetime.isoformat() | Amaury Forgeot d'Arc | 2009-12-29 | 1 | -0/+1 |
|
|
* | Issue #7575: An overflow test for math.expm1 was failing on OS X 10.4/Intel, | Mark Dickinson | 2009-12-29 | 1 | -1/+7 |
|
|
* | enable test_main.py | Benjamin Peterson | 2009-12-29 | 1 | -2/+3 |
|
|
* | Merged revisions 76871-76872,77093-77095,77097-77101 via svnmerge from | Benjamin Peterson | 2009-12-28 | 6 | -19/+123 |
|
|
* | #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ... | Georg Brandl | 2009-12-28 | 1 | -0/+39 |
|
|
* | #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. | Georg Brandl | 2009-12-28 | 1 | -4/+6 |
|
|
* | Use a more idiomatic check in check_truediv. | Mark Dickinson | 2009-12-27 | 1 | -3/+2 |
|
|
* | Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus ... | Mark Dickinson | 2009-12-27 | 1 | -1/+2 |
|
|
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 1 | -0/+168 |
|
|
* | Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. | Senthil Kumaran | 2009-12-27 | 1 | -2/+3 |
|
|
* | #6108: unicode(exception) and str(exception) should return the same message | Ezio Melotti | 2009-12-24 | 1 | -1/+109 |
|
|
* | Issue #7568: typo in docstring. Thanks Mike Putnam. | Mark Dickinson | 2009-12-24 | 1 | -1/+1 |
|
|
* | allow Process name to be unicode #7571 | Benjamin Peterson | 2009-12-24 | 1 | -1/+1 |
|
|
* | Unittests and news items for the patch in r77026. | Ronald Oussoren | 2009-12-24 | 1 | -1/+30 |
|
|
* | Issue #6834: replace the implementation for the 'python' and 'pythonw' execut... | Ronald Oussoren | 2009-12-24 | 1 | -1/+7 |
|
|
* | On OSX the output of "uname -m" always reflects the 32-bit architecture | Ronald Oussoren | 2009-12-24 | 1 | -0/+10 |
|
|
* | fix alleged refleak | Benjamin Peterson | 2009-12-24 | 1 | -3/+8 |
|
|
* | Fix possible integer overflow in lchown and fchown functions. For issue1747858. | Gregory P. Smith | 2009-12-23 | 1 | -25/+48 |
|
|
* | backported r76993 and r76994 so the trunk behaves the same way with MSVC Mani... | Tarek Ziadé | 2009-12-21 | 2 | -29/+108 |
|
|
* | Issue #7553: test_long_future wasn't testing properly. Thanks Florent Xicluna | Mark Dickinson | 2009-12-21 | 1 | -9/+7 |
|
|
* | Remove a leftover from a previous iteration of the issue 7376 patch. | R. David Murray | 2009-12-21 | 1 | -1/+1 |
|
|
* | massive import cleaning in Distutils | Tarek Ziadé | 2009-12-21 | 24 | -121/+97 |
|
|
* | Fixed #7552: fixed distutils.command.upload failure on very long passwords | Tarek Ziadé | 2009-12-20 | 2 | -4/+25 |
|
|
* | Issue #7554: Various fixups in test_cmath.py: remove code duplication, | Mark Dickinson | 2009-12-20 | 1 | -63/+50 |
|
|
* | Silence -3 warnings. Thanks Florent Xicluna. | Mark Dickinson | 2009-12-20 | 1 | -2/+4 |
|
|
* | Fix for consistency with py3k keyword-only version of assertAlmostEqual | Mark Dickinson | 2009-12-20 | 1 | -4/+4 |
|
|
* | Issue #7554: Fix incorrect usage of rAssertAlmostEqual. Thanks Florent Xicl... | Mark Dickinson | 2009-12-20 | 1 | -2/+2 |
|
|
* | Issue #7376: When called with no arguments doctest was running a | R. David Murray | 2009-12-20 | 1 | -18/+22 |
|
|
* | Fix comment typo. | R. David Murray | 2009-12-20 | 1 | -1/+1 |
|
|
* | Add missing tests for PyArg_Parse* with format 'h' | Mark Dickinson | 2009-12-20 | 1 | -1/+18 |
|
|
* | #7381: subprocess documentation and library docstring consistency fixes. | Georg Brandl | 2009-12-20 | 1 | -9/+9 |
|
|
* | Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth | Senthil Kumaran | 2009-12-20 | 3 | -35/+97 |
|
|
* | Remove superfetatory paragraph (left there by mistake). | Antoine Pitrou | 2009-12-19 | 1 | -5/+0 |
|
|
* | Issue #7545: improve documentation of the `buffering` argument in io.open(). | Antoine Pitrou | 2009-12-19 | 1 | -0/+15 |
|
|
* | Issue #3366: Add error function and complementary error function to | Mark Dickinson | 2009-12-19 | 1 | -0/+82 |
|
|