summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added a note about #7556 in Misc/NEWSTarek Ziadé2009-12-211-0/+3
|
* backported r76993 and r76994 so the trunk behaves the same way with MSVC ↵Tarek Ziadé2009-12-212-29/+108
| | | | Manifest files editing
* Add NEWS for OpenSSL changes.Martin v. Löwis2009-12-211-0/+4
|
* Switch to OpenSSL 0.9.8l.Martin v. Löwis2009-12-213-4/+4
|
* Drop 2.4 compatibility.Martin v. Löwis2009-12-211-5/+2
|
* Issue #7553: test_long_future wasn't testing properly. Thanks Florent XiclunaMark Dickinson2009-12-211-9/+7
| | | | for bug report and patch.
* Inverse hyperbolic trigonometric functions should call m_log1p, not log1p.Mark Dickinson2009-12-211-4/+5
|
* Issue #7518: Move substitute definitions of C99 math functions fromMark Dickinson2009-12-218-231/+250
| | | | pymath.c to Modules/_math.c.
* Remove a leftover from a previous iteration of the issue 7376 patch.R. David Murray2009-12-211-1/+1
|
* Additional edge-case tests for test_long_and_overflow.Mark Dickinson2009-12-211-16/+107
|
* Fix reference counts for test_long_and_overflow.Mark Dickinson2009-12-211-0/+6
|
* Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk.Mark Dickinson2009-12-215-31/+187
| | | | Thanks Case Van Horsen for the patch.
* massive import cleaning in DistutilsTarek Ziadé2009-12-2124-121/+97
|
* Fixed #7552: fixed distutils.command.upload failure on very long passwordsTarek Ziadé2009-12-203-8/+33
|
* Issue #7554: Various fixups in test_cmath.py: remove code duplication,Mark Dickinson2009-12-201-63/+50
| | | | use new-style formatting. Thanks Florent Xicluna for the patch.
* Silence -3 warnings. Thanks Florent Xicluna.Mark Dickinson2009-12-201-2/+4
|
* Fix for consistency with py3k keyword-only version of assertAlmostEqualMark Dickinson2009-12-201-4/+4
|
* Issue #7554: Fix incorrect usage of rAssertAlmostEqual. Thanks Florent ↵Mark Dickinson2009-12-201-2/+2
| | | | Xicluna.
* Issue #7376: When called with no arguments doctest was running aR. David Murray2009-12-202-18/+25
| | | | | | | | | | self-test. Because of a change to the way tracebacks are printed, this self-test was failing. The test is run (and passes) during normal regression testing. So instead of running the failing self-test this patch makes doctest emit a usage message. This is better behavior anyway since passing in arguments is the real reason to run doctest as a command. Bug discovery and initial patch by Florent Xicluna.
* Fix comment typo.R. David Murray2009-12-201-1/+1
|
* Add missing tests for PyArg_Parse* with format 'h'Mark Dickinson2009-12-202-1/+28
|
* builtin-ins -> builtinsBenjamin Peterson2009-12-201-6/+6
|
* #7381: subprocess documentation and library docstring consistency fixes.Georg Brandl2009-12-202-16/+18
|
* Small indentation fix.Georg Brandl2009-12-201-1/+1
|
* #7495: backport Programming FAQ review to trunk.Georg Brandl2009-12-201-85/+70
|
* math.factorial depends on PyLong_AsLong correctly converting floats; rewriteMark Dickinson2009-12-201-2/+9
| | | | it to do the conversion explicitly instead. See issue #7550.
* Document the headers parameter for set_tunnel.Senthil Kumaran2009-12-201-1/+4
|
* Fix for issue 7291 - urllib2 cannot handle https with proxy requiring authSenthil Kumaran2009-12-204-35/+100
| | | | Refactored HTTPHandler tests and added testcase for proxy authorization.
* #7388: "python".capitalize() in the DocEzio Melotti2009-12-1922-26/+26
|
* Remove superfetatory paragraph (left there by mistake).Antoine Pitrou2009-12-191-5/+0
|
* Issue #7545: improve documentation of the `buffering` argument in io.open().Antoine Pitrou2009-12-193-8/+43
|
* #7480: remove tautology.Georg Brandl2009-12-191-2/+1
|
* #7479: add note about function availability on Unices.Georg Brandl2009-12-191-13/+18
|
* #7493: review of Design FAQ by Florent Xicluna.Georg Brandl2009-12-191-69/+75
|
* #7521: remove Py_GetBuildNumber(), which was removed in favor of ↵Georg Brandl2009-12-191-9/+0
| | | | Py_GetBuildInfo().
* #7527: use standard versionadded tags.Georg Brandl2009-12-191-3/+5
|
* Issue #3366: Add error function and complementary error function toMark Dickinson2009-12-194-1/+242
| | | | math module.
* Issue #7529: logging: Minor correction to documentation.Vinay Sajip2009-12-171-0/+2
|
* Add _math.h to math module dependencies in setup.py.Mark Dickinson2009-12-171-0/+1
|
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-1613-10/+162
| | | | testing on Windows.
* Issue #7396: fix -s, which was broken by the -j enhancement.R. David Murray2009-12-162-11/+11
|
* remove type_compare, since type_richcompare does the same trickBenjamin Peterson2009-12-161-10/+1
|
* remove lib2to3 resourceBenjamin Peterson2009-12-161-2/+0
|
* cleaned up the module (PEP 8 + old fashion test removal)Tarek Ziadé2009-12-151-3/+2
|
* adverbBenjamin Peterson2009-12-151-1/+1
|
* Issue #7498: make test_multiprocessing use test_support.find_unused_portR. David Murray2009-12-142-2/+12
| | | | instead of a hard coded port number in test_rapid_restart.
* Issue #1680159: unicode coercion during an 'in' operation was maskingR. David Murray2009-12-143-3/+6
| | | | | | | any errors that might occur during coercion of the left operand and turning them into a TypeError with a message text that was confusing in the given context. This patch lets any errors through, as was already done during coercion of the right hand side.
* Clarify phrasing that explains that there are currently two branches.R. David Murray2009-12-141-5/+5
|
* reorganized the distutils doc a bit : the MANIFEST.in template system has ↵Tarek Ziadé2009-12-132-88/+98
| | | | its own section now. This is easier to find and follow
* add a test of loading the datetime capiBenjamin Peterson2009-12-131-0/+16
|