Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Correct a refleak found by "regrtest.py -R:: test_structmembers" | Amaury Forgeot d'Arc | 2008-04-14 | 1 | -5/+6 |
| | | | | | | Some other minor updates in _warnings.c: - make a function static - rename a shadowing local variable | ||||
* | Update project files for all Windows supported compilers | Amaury Forgeot d'Arc | 2008-04-14 | 4 | -4/+15 |
| | |||||
* | Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C for | Thomas Heller | 2008-04-14 | 5 | -25/+83 |
| | | | | better performance. | ||||
* | Add example | Andrew M. Kuchling | 2008-04-13 | 1 | -1/+7 |
| | |||||
* | Check out Jinja as a separate step now that it's not included in the Sphinx ↵ | Georg Brandl | 2008-04-13 | 2 | -0/+7 |
| | | | | package anymore. | ||||
* | Improve -X error message. | Georg Brandl | 2008-04-13 | 2 | -2/+2 |
| | |||||
* | Added an ignore file for Bazaar #2510 | Benjamin Peterson | 2008-04-13 | 1 | -0/+43 |
| | |||||
* | #2627 Let it be known what pgen generates | Benjamin Peterson | 2008-04-13 | 3 | -0/+7 |
| | |||||
* | 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. | ||||
* | Added new files to the pcbuild files | Christian Heimes | 2008-04-13 | 1 | -0/+4 |
| | |||||
* | Use PyString_InternFromString instead of PyString_FromString for static vars | Christian Heimes | 2008-04-13 | 1 | -3/+3 |
| | |||||
* | Fix compiler warning Include/warnings.h:19:28: warning: no newline at end of ↵ | Christian Heimes | 2008-04-13 | 1 | -1/+2 |
| | | | | file | ||||
* | Fix markup. | Georg Brandl | 2008-04-13 | 1 | -7/+5 |
| | |||||
* | 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. | ||||
* | Give the "Interactive Interpreter Changes" section in 2.6 whatsnew a unique ↵ | Benjamin Peterson | 2008-04-13 | 1 | -1/+1 |
| | | | | link name | ||||
* | Backport the removal of a __repr__ from 62251 | Benjamin Peterson | 2008-04-13 | 1 | -3/+0 |
| | |||||
* | Backported io module docs | Benjamin Peterson | 2008-04-13 | 3 | -133/+913 |
| | |||||
* | Mention -J, -X | Andrew M. Kuchling | 2008-04-13 | 1 | -0/+14 |
| | |||||
* | Fix an accidental bug of an non-existent init function. | Brett Cannon | 2008-04-13 | 1 | -2/+0 |
| | |||||
* | Fix a bug in PySys_HasWarnOption() where it was not properly checking the | Brett Cannon | 2008-04-13 | 1 | -1/+1 |
| | | | | length of the list storing the warning options. | ||||
* | Adds a profile-opt target for easy compilation of a python binary using | Gregory P. Smith | 2008-04-13 | 1 | -1/+29 |
| | | | | gcc's profile guided optimization. | ||||
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 18 | -379/+1459 |
| | | | | | | | | | 'warnings' code in places where it was previously not possible (e.g., the parser). It could also potentially lead to a speed-up in interpreter start-up if the C version of the code (_warnings) is imported over the use of the Python version in key places. Closes issue #1631171. | ||||
* | socket.error inherits from IOError, it no longer needs listing in | Gregory P. Smith | 2008-04-12 | 1 | -1/+1 |
| | | | | the all_errors tuple. | ||||
* | fix compiler warnings | Gregory P. Smith | 2008-04-12 | 1 | -5/+5 |
| | |||||
* | Don't offend snake lovers. | Georg Brandl | 2008-04-12 | 1 | -1/+1 |
| | |||||
* | Add Jeroen. | Georg Brandl | 2008-04-12 | 1 | -0/+3 |
| | |||||
* | #2615: small consistency update by Jeroen Ruigrok van der Werven. | Georg Brandl | 2008-04-12 | 1 | -4/+4 |
| | |||||
* | Use absolute path in sys.path. | Georg Brandl | 2008-04-12 | 1 | -1/+1 |
| | |||||
* | Applied patch #2617 from Frank Wierzbicki wit some extras from me | Christian Heimes | 2008-04-12 | 3 | -2/+20 |
| | | | | -J and -X are now reserved for Jython and non-standard arguments (e.g. IronPython). I've added some extra comments to make sure the reservation don't get missed in the future. | ||||
* | Performance improvements. | Thomas Heller | 2008-04-11 | 1 | -3/+3 |
| | |||||
* | Move backwards compatibility macro to the correct place; | Thomas Heller | 2008-04-11 | 1 | -1/+1 |
| | | | | PyIndex_Check() was introduced in Python 2.5. | ||||
* | Use issue directive | Andrew M. Kuchling | 2008-04-10 | 1 | -181/+106 |
| | |||||
* | Add punctuation | Andrew M. Kuchling | 2008-04-10 | 1 | -1/+1 |
| | |||||
* | Remove forward-looking statement | Andrew M. Kuchling | 2008-04-10 | 1 | -3/+3 |
| | |||||
* | get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. | Gregory P. Smith | 2008-04-10 | 3 | -3/+0 |
| | |||||
* | Remove the test file before writing it in case there is no write permission. | Neal Norwitz | 2008-04-10 | 4 | -5/+7 |
| | | | | | | This might help fix some of the failures on Windows box(es). It doesn't hurt either way and ensure the tests are a little more self contained (ie have less assumptions). | ||||
* | Merged revisions 62080-62262 via svnmerge from | Martin v. Löwis | 2008-04-10 | 6 | -13/+119 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r62092 | collin.winter | 2008-04-01 18:27:10 +0200 (Di, 01 Apr 2008) | 1 line Add get_prev_sibling() to complement pytree's get_next_sibling(). ........ r62226 | collin.winter | 2008-04-08 21:07:56 +0200 (Di, 08 Apr 2008) | 1 line Add min() and max() to the list of special contexts that don't require adding list() calls around dict methods. ........ r62232 | collin.winter | 2008-04-09 00:12:38 +0200 (Mi, 09 Apr 2008) | 4 lines Fix for http://bugs.python.org/issue2596 This extends fix_xrange to know about the (mostly) same special contexts as fix_dict (where a special context is something that is guaranteed to fully consume the iterable), adding list() calls where appropriate. It also special-cases "x in range(y)". ........ | ||||
* | Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, | Gregory P. Smith | 2008-04-09 | 3 | -0/+18 |
| | | | | PyBytes_FromStringAndSize or PyUnicode_FromStringAndSize. [issue2587] | ||||
* | better diagnostics | Gregory P. Smith | 2008-04-09 | 1 | -2/+2 |
| | |||||
* | Try out the new issue role. Thanks, Georg! | Andrew M. Kuchling | 2008-04-09 | 1 | -1/+1 |
| | |||||
* | Package wininst*.exe from distutils/command. | Martin v. Löwis | 2008-04-09 | 1 | -4/+1 |
| | |||||
* | Add a note about the zlib.decompressobj().flush() fix. | Gregory P. Smith | 2008-04-09 | 1 | -0/+3 |
| | |||||
* | Add :issue: directive for easy linking to bugs.python.org. | Georg Brandl | 2008-04-09 | 2 | -1/+25 |
| | |||||
* | #2585: initialize code attribute of HTTPError. | Georg Brandl | 2008-04-09 | 1 | -1/+1 |
| | |||||
* | Changed test so it no longer runs as a side effect of importing. | Jerry Seutter | 2008-04-09 | 1 | -110/+115 |
| | |||||
* | Add items | Andrew M. Kuchling | 2008-04-09 | 1 | -3/+13 |
| | |||||
* | Fix typo with regards to self.PORT shadowing class variables with the same name. | Trent Nelson | 2008-04-09 | 2 | -7/+8 |
| | |||||
* | Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. | Gregory P. Smith | 2008-04-09 | 2 | -0/+9 |
| | | | | It tried to allocate negative or zero memory. That fails. |