Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed URL of PEP 205 in weakref's module docstring. | Alexandre Vassalotti | 2008-04-27 | 1 | -1/+1 |
| | |||||
* | Add missing return type to dealloc. | Georg Brandl | 2008-04-26 | 1 | -1/+2 |
| | |||||
* | #2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky. | Georg Brandl | 2008-04-26 | 1 | -1/+31 |
| | |||||
* | #2668: nit in apply() docs. | Georg Brandl | 2008-04-26 | 1 | -1/+1 |
| | |||||
* | Allow test_import to work when it is invoked directly | Benjamin Peterson | 2008-04-25 | 1 | -0/+2 |
| | |||||
* | Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill. | Mark Dickinson | 2008-04-25 | 3 | -0/+9 |
| | |||||
* | Issue #1496032. Add -mieee to BASECFLAGS on alpha, when gcc is | Mark Dickinson | 2008-04-25 | 3 | -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 Heller | 2008-04-25 | 4 | -0/+221 |
| | |||||
* | A new crasher. | Armin Rigo | 2008-04-25 | 1 | -0/+31 |
| | |||||
* | Fix typo (now -> no) | Neal Norwitz | 2008-04-25 | 1 | -1/+1 |
| | |||||
* | reformat some documentation of classes so methods and attributes are under ↵ | Benjamin Peterson | 2008-04-25 | 42 | -3573/+3701 |
| | | | | the class directive | ||||
* | Use absolute import for test package | Amaury Forgeot d'Arc | 2008-04-24 | 1 | -1/+1 |
| | |||||
* | Add a few tests for pydoc. | Amaury Forgeot d'Arc | 2008-04-24 | 2 | -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'Arc | 2008-04-24 | 1 | -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 Heller | 2008-04-24 | 4 | -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'Arc | 2008-04-24 | 3 | -2/+5 |
| | | | | | This happened only when 8 is the first digit. Credits go to Lukas Meuser. | ||||
* | Add Jesus Cea. | Martin v. Löwis | 2008-04-24 | 1 | -0/+3 |
| | |||||
* | Fix typo. | Martin v. Löwis | 2008-04-24 | 1 | -1/+1 |
| | |||||
* | Remove Py_Refcnt, Py_Type, Py_Size, as they were added only | Martin v. Löwis | 2008-04-24 | 1 | -5/+0 |
| | | | | for backwards compatibility, yet 2.5 did not have them at all. | ||||
* | Add Guilherme Polo. | Martin v. Löwis | 2008-04-24 | 1 | -0/+3 |
| | |||||
* | #2673 Fix example typo in optparse docs | Benjamin Peterson | 2008-04-23 | 1 | -1/+1 |
| | |||||
* | syntax fixup | Gregory P. Smith | 2008-04-23 | 1 | -3/+3 |
| | |||||
* | Factor in documentation changes from issue 1753732. | Skip Montanaro | 2008-04-22 | 1 | -0/+13 |
| | |||||
* | Issue #2670: urllib2.build_opener() failed when two handlers | Amaury Forgeot d'Arc | 2008-04-22 | 3 | -3/+12 |
| | | | | | | derive the same default base class. Will backport. | ||||
* | update the getpass entry | Gregory P. Smith | 2008-04-22 | 1 | -2/+3 |
| | |||||
* | Major improvements: | Gregory P. Smith | 2008-04-22 | 2 | -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 Lee | Neal Norwitz | 2008-04-22 | 1 | -0/+3 |
| | |||||
* | Various io doc updates | Benjamin Peterson | 2008-04-22 | 1 | -68/+63 |
| | |||||
* | Make configure test for tanh(-0.) == -0. committed in r62447 actually | Mark Dickinson | 2008-04-22 | 2 | -5/+9 |
| | | | | work. (The test wasn't properly linked with libm. Sigh.) | ||||
* | Fix Sphinx warnings | Benjamin Peterson | 2008-04-21 | 1 | -11/+11 |
| | |||||
* | Issue 2665: On Windows, sys.stderr does not contain a valid file when ↵ | Amaury Forgeot d'Arc | 2008-04-21 | 2 | -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 Dickinson | 2008-04-21 | 3 | -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 printing | Gregory P. Smith | 2008-04-21 | 2 | -0/+7 |
| | | | | a warning instead of failing with a termios.error. | ||||
* | Windows x64 also falls under VER_PLATFORM_WIN32_NT. | Jeroen Ruigrok van der Werven | 2008-04-21 | 1 | -11/+11 |
| | |||||
* | explicitly flush after the ... since there wasn't a newline | Gregory P. Smith | 2008-04-21 | 1 | -0/+1 |
| | |||||
* | capitalization | David Goodger | 2008-04-21 | 1 | -2/+2 |
| | |||||
* | corrections ("reStructuredText" is one word) | David Goodger | 2008-04-21 | 1 | -4/+4 |
| | |||||
* | Fix typo. | Thomas Heller | 2008-04-21 | 1 | -1/+1 |
| | |||||
* | Moved Mark SummerField's io doc changes back to the trunk. (He will edit ↵ | Benjamin Peterson | 2008-04-21 | 1 | -117/+137 |
| | | | | here in the future.) | ||||
* | Add various items | Andrew M. Kuchling | 2008-04-21 | 1 | -1/+46 |
| | |||||
* | Wording changes | Andrew M. Kuchling | 2008-04-21 | 1 | -2/+2 |
| | |||||
* | Markup fix | Andrew M. Kuchling | 2008-04-21 | 1 | -1/+1 |
| | |||||
* | Silence 'r may be used uninitialized' compiler warning. | Mark Dickinson | 2008-04-21 | 1 | -0/+1 |
| | |||||
* | Comment typo | Andrew M. Kuchling | 2008-04-21 | 1 | -1/+1 |
| | |||||
* | math.atan2 is misbehaving on Windows; this patch | Mark Dickinson | 2008-04-20 | 1 | -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'Arc | 2008-04-20 | 1 | -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 systems | Mark Dickinson | 2008-04-20 | 1 | -0/+58 |
| | |||||
* | Even more fixes for alpha Tru64, this time for | Mark Dickinson | 2008-04-20 | 1 | -1/+10 |
| | | | | the phase and polar methods. | ||||
* | Move description of math module changes; various edits to description of ↵ | Andrew M. Kuchling | 2008-04-20 | 1 | -48/+62 |
| | | | | cmath changes | ||||
* | Issue 2662: Initialize special value tables dynamically (i.e. when | Mark Dickinson | 2008-04-20 | 1 | -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. |