Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add 3.2.4 UUIDs | Martin v. Löwis | 2013-03-30 | 1 | -0/+2 |
| | |||||
* | Issue #17425: Build with openssl 1.0.0k on Windows. | Martin v. Loewis | 2013-03-24 | 1 | -2/+2 |
| | |||||
* | Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/* | Terry Jan Reedy | 2013-03-11 | 2 | -2/+2 |
| | | | | found by Serhiy Storchaka and Matthew Barnett | ||||
* | Issue #17156: pygettext.py now uses an encoding of source file and correctly | Serhiy Storchaka | 2013-02-09 | 1 | -33/+33 |
| | | | | writes and escapes non-ascii characters. | ||||
* | - Issue #17029: Let h2py search the multiarch system include directory. | doko@python.org | 2013-01-25 | 1 | -0/+5 |
| | |||||
* | Issue #15539: Fix a backup file creation in pindent.py on Windows. | Serhiy Storchaka | 2013-01-11 | 1 | -12/+20 |
| | |||||
* | Add a note about checking refleaks to patchcheck. | Ezio Melotti | 2013-01-11 | 1 | -1/+2 |
| | |||||
* | Issue #15539: Fix a number of bugs in Tools/scripts/pindent.py. | Serhiy Storchaka | 2013-01-11 | 1 | -104/+60 |
| | | | | | | | Now pindent.py works with a "with" statement. pindent.py no longer produces improper indentation. pindent.py now works with continued lines broken after "class" or "def" keywords and with continuations at the start of line. Added regression tests for pindent.py. Modernized pindent.py. | ||||
* | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. ↵ | Ezio Melotti | 2012-11-09 | 1 | -3/+3 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka. | Antoine Pitrou | 2012-10-17 | 1 | -1/+1 |
| | |||||
* | Allow redemo.py to be used from the command line like other demos. | Ned Deily | 2012-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #15171: Quote the variable that expands to the current directory. | Stefan Krah | 2012-06-30 | 1 | -1/+1 |
| | |||||
* | Allow passing extra testing options to the buildbot test scripts | Antoine Pitrou | 2012-06-27 | 2 | -3/+2 |
| | |||||
* | Issue #15171: Try the HOST_PYTHON hack for 3.2. | Stefan Krah | 2012-06-25 | 1 | -0/+1 |
| | |||||
* | Upgrade OpenSSL to 1.0.0j | Martin v. Löwis | 2012-05-18 | 1 | -2/+2 |
| | |||||
* | bsddb never existed in 3.x, no need to keep downloading sleepycat | Brian Curtin | 2012-05-15 | 1 | -3/+0 |
| | |||||
* | Stop deleting non-existing bytecode files. | Martin v. Löwis | 2012-05-14 | 1 | -2/+0 |
| | |||||
* | Upgrade bzip2 to 1.0.6. | Martin v. Löwis | 2012-05-14 | 1 | -4/+4 |
| | |||||
* | Issue #14965: Fix missing support for starred assignments in ↵ | Mark Dickinson | 2012-05-06 | 2 | -0/+11 |
| | | | | Tools/parser/unparse.py. | ||||
* | #14508: make gprof2html script runnable under python3 | R David Murray | 2012-04-11 | 1 | -5/+7 |
| | | | | | | | Not that I haven't tested it to make sure it works, just that it can run against an empty source file. Initial patch by Popa.Claudiu. | ||||
* | Merge 3.2.3 release clone. | Georg Brandl | 2012-04-11 | 1 | -0/+1 |
|\ | |||||
| * | Add 3.2.3rc2 uuid. | Martin v. Löwis | 2012-03-18 | 1 | -0/+1 |
| | | |||||
* | | #14492: fix some bugs in Tools/scripts/pdeps.py. | R David Murray | 2012-04-06 | 1 | -5/+5 |
| | | | | | | | | Initial patch by Popa Claudiu. | ||||
* | | #14490, #14491: add 'sundry'-style import tests for Tools/scripts. | R David Murray | 2012-04-05 | 6 | -84/+89 |
| | | | | | | | | | | | | This patch changes a few of the scripts to have __name__=='__main__' clauses so that they are importable without running. Also fixes the syntax errors revealed by the tests. | ||||
* | | Package mime.types | Martin v. Löwis | 2012-02-25 | 1 | -0/+1 |
|/ | |||||
* | Issue #14053: Fix "make patchcheck" to work with MQ. | Nadeem Vawda | 2012-02-22 | 1 | -0/+12 |
| | | | | Patch by Francisco Martín Brugué | ||||
* | Issue #6807: Run msisupport.mak earlier. | Martin v. Löwis | 2012-02-21 | 1 | -2/+2 |
| | |||||
* | Issue #10580: Minor grammar change in Windows installer. | Martin v. Löwis | 2012-02-21 | 1 | -1/+1 |
| | |||||
* | Issue #13628: python-gdb.py is now able to retrieve more frames in the Python | Victor Stinner | 2011-12-19 | 1 | -13/+32 |
| | | | | | | | | | | | | | traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt and py-bt-full to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx() | ||||
* | Fix a missing encoding argument when opening a text file in some of ↵ | Antoine Pitrou | 2011-10-08 | 1 | -1/+1 |
| | | | | | | iobench's subtests. (found by Georg) | ||||
* | Add 3.2.2 and 3.2.3 UUIDs. | Martin v. Löwis | 2011-09-04 | 1 | -0/+5 |
| | |||||
* | Update crlf and lfcr scripts for 3.x bytes semantics (#12032). | Éric Araujo | 2011-08-12 | 2 | -12/+12 |
| | | | | | Changes to crlf originally by Victor Stinner for 3.3, copied to lfcr by me. Manually tested. | ||||
* | patchcheck: don’t talk about the test suite when no code file were changed. | Éric Araujo | 2011-08-12 | 1 | -2/+3 |
| | | | | | | The line about the test suite will still get printed for changes in Tools for example, which aren’t covered by the test suite, but it’s not a big deal IMO. | ||||
* | Let “make patchcheck” work for out-of-dir builds (#9860) | Éric Araujo | 2011-07-30 | 1 | -7/+13 |
| | |||||
* | Branch merge. | Éric Araujo | 2011-07-26 | 15 | -9/+22 |
|\ | | | | | | | I moved the NEWS entry for the reindent fix to the right release section. | ||||
| * | Fix missing or wrong shebangs and missing executable bits for scripts (#10318) | Éric Araujo | 2011-07-26 | 15 | -1/+6 |
| | | |||||
| * | Fix string exception and a few style issues in mailerdaemon script | Éric Araujo | 2011-07-26 | 1 | -8/+16 |
| | | |||||
* | | Fixes #10639: reindent.py should not convert newlines | Jason R. Coombs | 2011-07-26 | 1 | -3/+12 |
|/ | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered. | ||||
* | libpython.py (gdb) now catchs IOError in py-list and py-bt commands | Victor Stinner | 2011-07-01 | 1 | -4/+18 |
| | | | | | py-list displays the error. py-bt ignores the error (the filename and line number is already displayed). | ||||
* | merge:Do not add txt files twice | Martin v. Löwis | 2011-06-05 | 1 | -2/+0 |
|\ | |||||
| * | Do not add txt files twice. | Martin v. Löwis | 2011-06-05 | 1 | -2/+0 |
| | | |||||
* | | (Merge 3.1) Issue #12057: Add cjkencodings directory to the Makefile and | Victor Stinner | 2011-05-24 | 1 | -0/+2 |
|\ \ | |/ | | | | | Tools/msi/msi.py | ||||
| * | Issue #12057: Add cjkencodings directory to the Makefile and Tools/msi/msi.py | Victor Stinner | 2011-05-24 | 1 | -0/+2 |
| | | |||||
* | | Add 3.2.1rc2 uuid. | Martin v. Löwis | 2011-05-23 | 1 | -0/+1 |
|\ \ | |||||
| * | | Add 3.2.1rc2 uuid. | Martin v. Loewis | 2011-05-22 | 1 | -0/+1 |
| | | | |||||
* | | | Merge release branch after 3.2.1rc1. | Georg Brandl | 2011-05-21 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Add 3.2.1 UUIDs | Martin v. Löwis | 2011-05-16 | 1 | -0/+2 |
| | | | |||||
* | | | (Merge 3.1) Issue #11614: import __hello__ prints "Hello World!". Patch written | Victor Stinner | 2011-05-16 | 1 | -0/+1 |
|\ \ \ | |/ / |/| / | |/ | by Andreas Stührk. | ||||
| * | Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas | Victor Stinner | 2011-05-16 | 1 | -0/+1 |
| | | | | | | | | Stührk. |