summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* Yet more explicit special case handling to makeMark Dickinson2008-04-202-47/+67
| | | | | | math.pow behave on alpha Tru64. All IEEE 754 special values are now handled directly; only the finite**finite case is handled by libm.
* FreeBSD doesn't follow C99 for modf(inf); so add explicitMark Dickinson2008-04-201-0/+9
| | | | special-value handling to math.modf code.
* Report additional diagnostic information inMark Dickinson2008-04-201-1/+6
| | | | | test_math, to help track down debian-alpha buildbot failure.
* Move asinh documentation to the proper place.Mark Dickinson2008-04-191-17/+18
| | | | | Remove meaningless 'in radians' from inverse hyperbolic functions.
* Correct documentation for math.pow;Mark Dickinson2008-04-191-4/+8
| | | | | | 0**nan is nan, not 0. (But nan**0 and 1**nan are 1.) Also fix minor typo: 'quite NaN' -> 'quiet NaN'
* Update template for newest Sphinx.Georg Brandl2008-04-192-3/+4
|
* Document updates to math and cmath modules.Mark Dickinson2008-04-191-0/+51
|
* Complete documentation for errors argument of io's open and TextIOWrapperBenjamin Peterson2008-04-191-9/+14
|
* Additional special-case handling for math.pow.Mark Dickinson2008-04-191-6/+13
| | | | Windows/VS2008 doesn't like (-1)**(+-inf).
* Copy io documentation back from py3k branch so changes can be merged into it.Benjamin Peterson2008-04-191-25/+30
|
* Additional tests for math.pow, and extra special-caseMark Dickinson2008-04-192-10/+135
| | | | | handling code in math.pow, in the hope of making all tests pass on the alpha Tru64 buildbot.
* :func: et al. should *not* include the parens.Georg Brandl2008-04-191-3/+3
|
* #2631: clarify IMPORT_NAME semantics.Georg Brandl2008-04-191-3/+5
|
* #2633: clarify meaning of env parameter.Georg Brandl2008-04-191-2/+3
|
* #2634: clarify meaning of env parameter to spawn/exec*e.Georg Brandl2008-04-191-2/+4
|
* #2369: clarify that copyfile() doesn't take a target directory.Georg Brandl2008-04-191-9/+11
|
* Fix-up docs for revision 62386.Georg Brandl2008-04-191-2/+8
|
* Added kill, terminate and send_signal to subprocess.PopenChristian Heimes2008-04-194-0/+103
| | | | The bits and pieces for the Windows side were already in place. The POSIX side is trivial (as usual) and uses os.kill().
* Stupid me. Py_RETURN_NAN should actually return something ...Christian Heimes2008-04-181-1/+1
|
* Added new files to Windows project filesChristian Heimes2008-04-184-4/+23
| | | | More Windows related fixes are coming soon
* Some tests did not pass on repeated calls (regrtest -R::)Amaury Forgeot d'Arc2008-04-187-9/+29
| | | | Perform additional cleanup, mostly deleting from sys.modules, or clearing the warnings registry.
* I finally got the time to update and merge Mark's and my trunk-math branch. ↵Christian Heimes2008-04-1825-1157/+5100
| | | | | | The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. The patch also adds acosh, asinh, atanh, log1p and copysign to all platforms. Finally it fixes differences between platforms like different results or exceptions for edge cases. Have fun :)
* Fix indentation in sysmodule.cBenjamin Peterson2008-04-181-4/+4
|
* resolve issue 2014Skip Montanaro2008-04-183-11/+33
|