Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | delta encoding of upper/lower/title makes a glorious return (#12736) | Benjamin Peterson | 2012-01-16 | 1 | -0/+7 |
| | |||||
* | add str.casefold() (closes #13752) | Benjamin Peterson | 2012-01-14 | 1 | -15/+35 |
| | |||||
* | use full unicode mappings for upper/lower/title case (#12736) | Benjamin Peterson | 2012-01-11 | 1 | -32/+69 |
| | | | | Also broaden the category of characters that count as lowercase/uppercase. | ||||
* | (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames in | Victor Stinner | 2011-12-19 | 1 | -13/+32 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | the Python 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() | ||||
| * | 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() | ||||
* | | iobench.py: add more info in the header | Victor Stinner | 2011-12-18 | 1 | -4/+15 |
| | | | | | | | | Write the Python version, Unicode implementation and the platform. | ||||
* | | Fix test_gdb failure | Antoine Pitrou | 2011-12-12 | 1 | -1/+0 |
| | | |||||
* | | Issue #13575: there is only one class type. | Florent Xicluna | 2011-12-12 | 1 | -41/+3 |
| | | |||||
* | | libpython.py: defer call to gdb.lookup_type('PyUnicodeObject') | Victor Stinner | 2011-12-07 | 1 | -1/+6 |
| | | | | | | | | The lookup fails at startup if Python is linked to a shared library. | ||||
* | | Issue #6715: Add module for compression using the LZMA algorithm. | Nadeem Vawda | 2011-11-29 | 1 | -0/+5 |
| | | |||||
* | | Oops, really fix gdb/libpython.py for not ready Unicode strings | Victor Stinner | 2011-11-04 | 1 | -1/+2 |
| | | |||||
* | | Fix gdb/libpython.py for not ready Unicode strings | Victor Stinner | 2011-11-04 | 1 | -5/+0 |
| | | | | | | | | | | _PyUnicode_CheckConsistency() checks also hash and length value for not ready Unicode strings. | ||||
* | | #12753: Add support for Unicode name aliases and named sequences. | Ezio Melotti | 2011-10-21 | 1 | -2/+100 |
| | | |||||
* | | 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) | ||||
| * | 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) | ||||
* | | Fix test_gdb following the small unicode struct change in c25262e97304 ↵ | Antoine Pitrou | 2011-10-08 | 1 | -1/+1 |
| | | | | | | | | (issue #13130) | ||||
* | | #13054: fix usage of sys.maxunicode after PEP-393. | Ezio Melotti | 2011-10-04 | 2 | -1/+2 |
| | | |||||
* | | PyUnicode_Ready() now sets ascii=1 if maxchar < 128 | Victor Stinner | 2011-10-03 | 1 | -2/+3 |
| | | | | | | | | | | ascii=1 is no more reserved to PyASCIIObject. Use PyUnicode_IS_COMPACT_ASCII(obj) to check if obj is a PyASCIIObject (as before). | ||||
* | | Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default': | Antoine Pitrou | 2011-10-01 | 1 | -1/+1 |
| | | | | | | | | Issue #12804: Prevent "make test" from using network resources. | ||||
* | | Fix ResourceWarnings in makeunicodedata.py. | Ezio Melotti | 2011-09-30 | 1 | -81/+88 |
| | | |||||
* | | Update for PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -12/+25 |
| | | |||||
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -3/+24 |
| | | |||||
* | | Merge with 3.2 | Martin v. Löwis | 2011-09-04 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Add 3.2.2 and 3.2.3 UUIDs. | Martin v. Löwis | 2011-09-04 | 1 | -0/+5 |
| | | |||||
* | | Issue #12804: Prevent "make test" from using network resources. | Nadeem Vawda | 2011-08-21 | 1 | -1/+1 |
| | | |||||
* | | Use -n for tests under Windows | Antoine Pitrou | 2011-08-16 | 1 | -0/+2 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-08-12 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | 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. | ||||
* | | Merge 3.2 | Éric Araujo | 2011-08-12 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | 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. | ||||
* | | Corrected attribute docstring per pep-257 (reference #10639) | Jason R. Coombs | 2011-08-02 | 1 | -1/+1 |
| | | |||||
* | | Clean up description of Tools/scripts/run_tests.py. | Nadeem Vawda | 2011-08-02 | 2 | -5/+6 |
| | | | | | | | | Also, add an entry for the script in Tools/scripts/README. | ||||
* | | Issue #11651: Move options for running tests into a Python script. | Nadeem Vawda | 2011-08-01 | 1 | -0/+45 |
| | | | | | | | | | | | | This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon. | ||||
* | | Small cleanup | Éric Araujo | 2011-07-31 | 1 | -9/+4 |
| | | |||||
* | | Merge fixes for #9860, #11104/#8688 and #12331 from 3.2 | Éric Araujo | 2011-07-31 | 1 | -7/+13 |
|\ \ | |/ | |||||
| * | Let “make patchcheck” work for out-of-dir builds (#9860) | Éric Araujo | 2011-07-30 | 1 | -7/+13 |
| | | |||||
* | | Merge fix for reindent.py | Jason R. Coombs | 2011-07-29 | 1 | -2/+2 |
|\ \ | |||||
| * | | Issue #10639: spec_newline wasn't defined globally unless main() was called; ↵ | Jason R. Coombs | 2011-07-29 | 1 | -2/+2 |
| | | | | | | | | | | | | now spec_newline is set at module import/execution | ||||
* | | | Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes) | Éric Araujo | 2011-07-29 | 15 | -9/+22 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | 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 |
| | | | |||||
* | | | Issue #10639: reindent.py tool now accepts a --newline option to specify the ↵ | Jason R. Coombs | 2011-07-26 | 1 | -4/+12 |
| | | | | | | | | | | | | newline to be used in the output of converted files. | ||||
* | | | Merge with 3.2 Issue #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. | ||||
| * | | 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. | ||||
* | | Issue #12406: Added upates for packaging's .exe files, command_template, and ↵ | Vinay Sajip | 2011-07-03 | 1 | -1/+6 |
| | | | | | | | | sysconfig.cfg. | ||||
* | | (merge 3.2) 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). | ||||
| * | 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). | ||||
* | | general cleaning up | Benjamin Peterson | 2011-06-27 | 1 | -11/+3 |
| | | |||||
* | | remove svn support | Benjamin Peterson | 2011-06-27 | 1 | -3/+0 |
| | |