summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed URL of PEP 205 in weakref's module docstring.Alexandre Vassalotti2008-04-271-1/+1
|
* Add missing return type to dealloc.Georg Brandl2008-04-261-1/+2
|
* #2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky.Georg Brandl2008-04-261-1/+31
|
* #2668: nit in apply() docs.Georg Brandl2008-04-261-1/+1
|
* Allow test_import to work when it is invoked directlyBenjamin Peterson2008-04-251-0/+2
|
* Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.Mark Dickinson2008-04-253-0/+9
|
* Issue #1496032. Add -mieee to BASECFLAGS on alpha, when gcc isMark Dickinson2008-04-253-1/+33
| | | | | | | | the compiler. This should(?) help to fix failures in test_math and test_cmath on Linux/alpha. Also add configure message reporting the result of uname -m, as a debugging aid.
* Add from_buffer and from_buffer_copy class methods to ctypes types.Thomas Heller2008-04-254-0/+221
|
* A new crasher.Armin Rigo2008-04-251-0/+31
|
* Fix typo (now -> no)Neal Norwitz2008-04-251-1/+1
|
* reformat some documentation of classes so methods and attributes are under ↵Benjamin Peterson2008-04-2542-3573/+3701
| | | | the class directive
* Use absolute import for test packageAmaury Forgeot d'Arc2008-04-241-1/+1
|
* Add a few tests for pydoc.Amaury Forgeot d'Arc2008-04-242-1/+33
| | | | | | | This is a modified version of a patch proposed by Humberto Diogenes in the discussion of issue1883. I will merge manually this change into the py3k branch: the tests must be adapted.
* Disable gc when running test_trace, or we may record the __del__ of ↵Amaury Forgeot d'Arc2008-04-241-0/+12
| | | | | | | collected objects. See http://mail.python.org/pipermail/python-checkins/2008-April/068633.html the extra events perfectly match several calls to socket._fileobject.__del__()
* Remove cyclic reference in CFuncPtr instances; see issue #2682.Thomas Heller2008-04-244-50/+136
| | | | Backport candidate for the release25-maint branch.
* Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).Amaury Forgeot d'Arc2008-04-243-2/+5
| | | | | This happened only when 8 is the first digit. Credits go to Lukas Meuser.
* Add Jesus Cea.Martin v. Löwis2008-04-241-0/+3
|
* Fix typo.Martin v. Löwis2008-04-241-1/+1
|
* Remove Py_Refcnt, Py_Type, Py_Size, as they were added onlyMartin v. Löwis2008-04-241-5/+0
| | | | for backwards compatibility, yet 2.5 did not have them at all.
* Add Guilherme Polo.Martin v. Löwis2008-04-241-0/+3
|
* #2673 Fix example typo in optparse docsBenjamin Peterson2008-04-231-1/+1
|
* syntax fixupGregory P. Smith2008-04-231-3/+3
|
* Factor in documentation changes from issue 1753732.Skip Montanaro2008-04-221-0/+13
|
* Issue #2670: urllib2.build_opener() failed when two handlersAmaury Forgeot d'Arc2008-04-223-3/+12
| | | | | | derive the same default base class. Will backport.
* update the getpass entryGregory P. Smith2008-04-221-2/+3
|
* Major improvements:Gregory P. Smith2008-04-222-36/+94
| | | | | | | | | * Default to using /dev/tty for the password prompt and input before falling back to sys.stdin and sys.stderr. * Use sys.stderr instead of sys.stdout. * print the 'password may be echoed' warning to stream used to display the prompt rather than always sys.stderr. * warn() with GetPassWarning when input may be echoed.
* Add Thomas LeeNeal Norwitz2008-04-221-0/+3
|
* Various io doc updatesBenjamin Peterson2008-04-221-68/+63
|
* Make configure test for tanh(-0.) == -0. committed in r62447 actuallyMark Dickinson2008-04-222-5/+9
| | | | work. (The test wasn't properly linked with libm. Sigh.)
* Fix Sphinx warningsBenjamin Peterson2008-04-211-11/+11
|
* Issue 2665: On Windows, sys.stderr does not contain a valid file when ↵Amaury Forgeot d'Arc2008-04-212-4/+24
| | | | | | | | | | running without a console. It seems to work, but will fail at the first flush. This causes IDLE to crash when too many warnings are printed. Will backport.
* test_math and test_cmath are failing on the FreeBSD 6.2 trunk buildbot,Mark Dickinson2008-04-213-0/+105
| | | | | | | | apparently because tanh(-0.) loses the sign of zero on that platform. If true, this is a bug in FreeBSD. Added a configure test to verify this. I still need to figure out how best to deal with this failure.
* If sys.stdin is not a tty, fall back to default_getpass after printingGregory P. Smith2008-04-212-0/+7
| | | | a warning instead of failing with a termios.error.
* Windows x64 also falls under VER_PLATFORM_WIN32_NT.Jeroen Ruigrok van der Werven2008-04-211-11/+11
|
* explicitly flush after the ... since there wasn't a newlineGregory P. Smith2008-04-211-0/+1
|
* capitalizationDavid Goodger2008-04-211-2/+2
|
* corrections ("reStructuredText" is one word)David Goodger2008-04-211-4/+4
|
* Fix typo.Thomas Heller2008-04-211-1/+1
|
* Moved Mark SummerField's io doc changes back to the trunk. (He will edit ↵Benjamin Peterson2008-04-211-117/+137
| | | | here in the future.)
* Add various itemsAndrew M. Kuchling2008-04-211-1/+46
|
* Wording changesAndrew M. Kuchling2008-04-211-2/+2
|
* Markup fixAndrew M. Kuchling2008-04-211-1/+1
|
* Silence 'r may be used uninitialized' compiler warning.Mark Dickinson2008-04-211-0/+1
|
* Comment typoAndrew M. Kuchling2008-04-211-1/+1
|
* math.atan2 is misbehaving on Windows; this patchMark Dickinson2008-04-201-1/+37
| | | | | should fix the problem in the same way that the cmath.phase problems were fixed.
* Correct an apparent refleak in test_pkgutil: zipimport._zip_directory_cache ↵Amaury Forgeot d'Arc2008-04-201-0/+3
| | | | | | contains info for all processed zip files, even when they are no longer used.
* Add test for tanh(-0.) == -0. on IEEE 754 systemsMark Dickinson2008-04-201-0/+58
|
* Even more fixes for alpha Tru64, this time forMark Dickinson2008-04-201-1/+10
| | | | the phase and polar methods.
* Move description of math module changes; various edits to description of ↵Andrew M. Kuchling2008-04-201-48/+62
| | | | cmath changes
* Issue 2662: Initialize special value tables dynamically (i.e. whenMark Dickinson2008-04-201-109/+128
| | | | | | | | cmath module is loaded) instead of statically. This fixes compile-time problems on platforms where HUGE_VAL is an extern variable rather than a constant. Thanks Hirokazu Yamamoto for the patch.