summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Merge: #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-221-0/+12
|\ | | | | | | Patch by Francisco Martín Brugué
| * Issue #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-221-0/+12
| | | | | | | | Patch by Francisco Martín Brugué
* | enable hash randomization by defaultBenjamin Peterson2012-02-211-1/+0
| |
* | Issue #12406: Update list of files.Martin v. Löwis2012-02-211-7/+43
| |
* | Issue #12406: prevent case where shortened name could conflict with short name.Martin v. Löwis2012-02-211-8/+10
| |
* | merge 2.6Martin v. Löwis2012-02-211-2/+2
|\ \ | |/
| * Issue #6807: Run msisupport.mak earlier.Martin v. Löwis2012-02-211-2/+2
| |
* | merge 3.2Martin v. Löwis2012-02-211-1/+1
|\ \ | |/
| * Issue #10580: Minor grammar change in Windows installer.Martin v. Löwis2012-02-211-1/+1
| |
* | update to Unicode 6.1Benjamin Peterson2012-02-211-4/+5
| |
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-0/+1
|\ \ | |/
* | delta encoding of upper/lower/title makes a glorious return (#12736)Benjamin Peterson2012-01-161-0/+7
| |
* | add str.casefold() (closes #13752)Benjamin Peterson2012-01-141-15/+35
| |
* | use full unicode mappings for upper/lower/title case (#12736)Benjamin Peterson2012-01-111-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 inVictor Stinner2011-12-191-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 PythonVictor Stinner2011-12-191-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 headerVictor Stinner2011-12-181-4/+15
| | | | | | | | Write the Python version, Unicode implementation and the platform.
* | Fix test_gdb failureAntoine Pitrou2011-12-121-1/+0
| |
* | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-41/+3
| |
* | libpython.py: defer call to gdb.lookup_type('PyUnicodeObject')Victor Stinner2011-12-071-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 Vawda2011-11-291-0/+5
| |
* | Oops, really fix gdb/libpython.py for not ready Unicode stringsVictor Stinner2011-11-041-1/+2
| |
* | Fix gdb/libpython.py for not ready Unicode stringsVictor Stinner2011-11-041-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 Melotti2011-10-211-2/+100
| |
* | Fix a missing encoding argument when opening a text file in some of ↵Antoine Pitrou2011-10-081-1/+1
|\ \ | |/ | | | | | | | | iobench's subtests. (found by Georg)
| * Fix a missing encoding argument when opening a text file in some of ↵Antoine Pitrou2011-10-081-1/+1
| | | | | | | | | | | | iobench's subtests. (found by Georg)
* | Fix test_gdb following the small unicode struct change in c25262e97304 ↵Antoine Pitrou2011-10-081-1/+1
| | | | | | | | (issue #13130)
* | #13054: fix usage of sys.maxunicode after PEP-393.Ezio Melotti2011-10-042-1/+2
| |
* | PyUnicode_Ready() now sets ascii=1 if maxchar < 128Victor Stinner2011-10-031-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 Pitrou2011-10-011-1/+1
| | | | | | | | Issue #12804: Prevent "make test" from using network resources.
* | Fix ResourceWarnings in makeunicodedata.py.Ezio Melotti2011-09-301-81/+88
| |
* | Update for PEP 393.Martin v. Löwis2011-09-281-12/+25
| |
* | Implement PEP 393.Martin v. Löwis2011-09-281-3/+24
| |
* | Merge with 3.2Martin v. Löwis2011-09-041-0/+5
|\ \ | |/
| * Add 3.2.2 and 3.2.3 UUIDs.Martin v. Löwis2011-09-041-0/+5
| |
* | Issue #12804: Prevent "make test" from using network resources.Nadeem Vawda2011-08-211-1/+1
| |
* | Use -n for tests under WindowsAntoine Pitrou2011-08-161-0/+2
| |
* | Merge 3.2Éric Araujo2011-08-121-6/+6
|\ \ | |/
| * Update crlf and lfcr scripts for 3.x bytes semantics (#12032).Éric Araujo2011-08-122-12/+12
| | | | | | | | | | Changes to crlf originally by Victor Stinner for 3.3, copied to lfcr by me. Manually tested.
* | Merge 3.2Éric Araujo2011-08-121-2/+3
|\ \ | |/
| * patchcheck: don’t talk about the test suite when no code file were changed.Éric Araujo2011-08-121-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. Coombs2011-08-021-1/+1
| |
* | Clean up description of Tools/scripts/run_tests.py.Nadeem Vawda2011-08-022-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 Vawda2011-08-011-0/+45
| | | | | | | | | | | | This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.
* | Small cleanupÉric Araujo2011-07-311-9/+4
| |
* | Merge fixes for #9860, #11104/#8688 and #12331 from 3.2Éric Araujo2011-07-311-7/+13
|\ \ | |/
| * Let “make patchcheck” work for out-of-dir builds (#9860)Éric Araujo2011-07-301-7/+13
| |
* | Merge fix for reindent.pyJason R. Coombs2011-07-291-2/+2
|\ \
| * | Issue #10639: spec_newline wasn't defined globally unless main() was called; ↵Jason R. Coombs2011-07-291-2/+2
| | | | | | | | | | | | now spec_newline is set at module import/execution
* | | Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes)Éric Araujo2011-07-2915-9/+22
|\ \ \ | |/ / |/| / | |/