Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for issue #2520 (cannot import macerrors) | Ronald Oussoren | 2008-05-02 | 1 | -0/+1 |
| | |||||
* | Fix for #1905: PythonLauncher not working correctly on OSX 10.5/Leopard | Ronald Oussoren | 2008-05-02 | 2 | -1/+2 |
| | | | | This fixes both Python Launchar and the terminalcommand module. | ||||
* | Merged revisions 62263-62646 via svnmerge from | Martin v. Löwis | 2008-05-02 | 2 | -4/+53 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r62470 | david.wolever | 2008-04-24 02:11:07 +0200 (Do, 24 Apr 2008) | 3 lines Fixed up and applied the patch for #2431 -- speeding up 2to3 with a lookup table. ........ r62646 | martin.v.loewis | 2008-05-02 23:29:27 +0200 (Fr, 02 Mai 2008) | 2 lines Fix whitespace. ........ | ||||
* | Fixed some test structures. Thanks Mark Dickinson. | Facundo Batista | 2008-05-02 | 2 | -21/+10 |
| | |||||
* | #2581: Vista UAC/elevation support for bdist_wininst | Mark Hammond | 2008-05-02 | 6 | -1/+31 |
| | |||||
* | This should fix issue2632. A long description of the two competing | Gregory P. Smith | 2008-05-02 | 1 | -59/+104 |
| | | | | | | | | | | | | | | | | | | | | problems is in the bug report (one old, one recently introduced trying to fix the old one). In short: buffer data during socket._fileobject.read() and readlines() within a cStringIO object instead of a [] of str()s returned from the recv() call. This prevents excessive memory use due to the size parameter being passed to recv() being grossly larger than the actual size of the data returned *and* prevents excessive cpu usage due to looping in python calling recv() with a very tiny size value if min() is used as the previous memory-use bug "fix" did. It also documents what the socket._fileobject._rbufsize member is actually used for. This is a candidate for back porting to 2.5. | ||||
* | Remove some from __future__ import with_statements | Benjamin Peterson | 2008-04-30 | 7 | -7/+0 |
| | |||||
* | #1748: use functools.wraps instead of rolling own metadata update. | Georg Brandl | 2008-04-30 | 1 | -6/+2 |
| | |||||
* | make test_support's captured_output a bit more robust when exceptions happen | Benjamin Peterson | 2008-04-30 | 1 | -2/+4 |
| | |||||
* | #2719: backport next() from 3k. | Georg Brandl | 2008-04-30 | 1 | -0/+27 |
| | |||||
* | Issue 2526, float.__format__ 'n' specifier does not support thousands grouping. | Eric Smith | 2008-04-30 | 1 | -1/+11 |
| | | | | | Implemented grouping, with tests. Cleaned up PyOS_ascii_formatd by breaking reformatting into smaller functions. | ||||
* | test_sundry performs minimal tests (a simple import...) on modules that are ↵ | Amaury Forgeot d'Arc | 2008-04-28 | 1 | -25/+0 |
| | | | | | | | not tested otherwise. Some of them now have tests and can be removed. Only 70 to go... | ||||
* | Rename the test_traceback_print() function to traceback_print() to prevent | Brett Cannon | 2008-04-28 | 1 | -2/+2 |
| | | | | test_capi from automatically calling the function. | ||||
* | Get rid of _test(), _main(), _debug() and _check(). Tests are no longer | Skip Montanaro | 2008-04-28 | 1 | -93/+12 |
| | | | | | | needed (better set available in Lib/test/test_robotparser.py). Clean up a few PEP 8 nits (compound statements on a single line, whitespace around operators). | ||||
* | Fix a bug introduced by the warnings rewrite where tracebacks were being | Brett Cannon | 2008-04-28 | 1 | -2/+28 |
| | | | | | | improperly indented. Closes issue #2699. | ||||
* | Minor cleanups: | Skip Montanaro | 2008-04-28 | 1 | -35/+37 |
| | | | | | | | | * Avoid creating unused local variables where we can. Where we can't prefix the unused variables with '_'. * Avoid shadowing builtins where it won't change the external interface of a function. * Use None as default path arg to readmodule and readmodule_ex. | ||||
* | A few small changes: | Skip Montanaro | 2008-04-27 | 1 | -10/+5 |
| | | | | | | | * The only exception we should catch when trying to import cStringIO is an ImportError. * Delete the function signatures embedded in the mk*temp docstrings. * The tempdir global variable was initialized twice. | ||||
* | Autocompletion of filenames now support alternate separators, e.g. the | Kurt B. Kaiser | 2008-04-27 | 2 | -3/+10 |
| | | | | '/' char on Windows. Patch 2061 Tal Einat. | ||||
* | Improved AutoCompleteWindow logic. Patch 2062 Tal Einat. | Kurt B. Kaiser | 2008-04-27 | 2 | -7/+14 |
| | |||||
* | Home / Control-A toggles between left margin and end of leading white | Kurt B. Kaiser | 2008-04-27 | 3 | -11/+48 |
| | | | | | | | | space. Patch 1196903 Jeff Shute. M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/NEWS.txt | ||||
* | Fixed URL of PEP 205 in weakref's module docstring. | Alexandre Vassalotti | 2008-04-27 | 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 | 2 | -0/+5 |
| | |||||
* | Add from_buffer and from_buffer_copy class methods to ctypes types. | Thomas Heller | 2008-04-25 | 1 | -0/+81 |
| | |||||
* | A new crasher. | Armin Rigo | 2008-04-25 | 1 | -0/+31 |
| | |||||
* | 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__() | ||||
* | Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0). | Amaury Forgeot d'Arc | 2008-04-24 | 1 | -1/+1 |
| | | | | | This happened only when 8 is the first digit. Credits go to Lukas Meuser. | ||||
* | Issue #2670: urllib2.build_opener() failed when two handlers | Amaury Forgeot d'Arc | 2008-04-22 | 2 | -3/+9 |
| | | | | | | derive the same default base class. Will backport. | ||||
* | Major improvements: | Gregory P. Smith | 2008-04-22 | 1 | -34/+76 |
| | | | | | | | | | * 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. | ||||
* | 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. | ||||
* | If sys.stdin is not a tty, fall back to default_getpass after printing | Gregory P. Smith | 2008-04-21 | 1 | -0/+4 |
| | | | | a warning instead of failing with a termios.error. | ||||
* | Comment typo | Andrew M. Kuchling | 2008-04-21 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | Yet more explicit special case handling to make | Mark Dickinson | 2008-04-20 | 1 | -0/+12 |
| | | | | | | math.pow behave on alpha Tru64. All IEEE 754 special values are now handled directly; only the finite**finite case is handled by libm. | ||||
* | Report additional diagnostic information in | Mark Dickinson | 2008-04-20 | 1 | -1/+6 |
| | | | | | test_math, to help track down debian-alpha buildbot failure. | ||||
* | Additional tests for math.pow, and extra special-case | Mark Dickinson | 2008-04-19 | 1 | -10/+124 |
| | | | | | handling code in math.pow, in the hope of making all tests pass on the alpha Tru64 buildbot. | ||||
* | Added kill, terminate and send_signal to subprocess.Popen | Christian Heimes | 2008-04-19 | 2 | -0/+78 |
| | | | | The bits and pieces for the Windows side were already in place. The POSIX side is trivial (as usual) and uses os.kill(). | ||||
* | Some tests did not pass on repeated calls (regrtest -R::) | Amaury Forgeot d'Arc | 2008-04-18 | 7 | -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 Heimes | 2008-04-18 | 5 | -30/+3106 |
| | | | | | | 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 :) | ||||
* | resolve issue 2014 | Skip Montanaro | 2008-04-18 | 2 | -11/+30 |
| | |||||
* | Add test file missing from rev 62350 | Nick Coghlan | 2008-04-15 | 1 | -0/+123 |
| | |||||
* | Issue 2439: add pkgutils.get_data() as a convenience wrapper for the PEP 302 ↵ | Nick Coghlan | 2008-04-15 | 1 | -0/+37 |
| | | | | get_data() API (contributed by Paul Moore) | ||||
* | Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C for | Thomas Heller | 2008-04-14 | 1 | -25/+1 |
| | | | | better performance. | ||||
* | Fix spliting on colons on Windows machines with a file path by limiting the | Brett Cannon | 2008-04-13 | 1 | -3/+1 |
| | | | | number of splits. | ||||
* | Add an explicit check for output in a test to try to diagnose a failure on | Brett Cannon | 2008-04-13 | 1 | -1/+4 |
| | | | | Windows. | ||||
* | spelling | Skip Montanaro | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | Fix test_warnings by making the state of things more consistent for each test | Brett Cannon | 2008-04-13 | 1 | -29/+42 |
| | | | | when it is run. |