Martin v. Löwis
f2f592d1b9
Generate product code UUID from download URL.
14 years ago
Martin v. Löwis
3d4809f464
Package mime.types
14 years ago
Nadeem Vawda
9f64f73193
Issue #14053 : Fix "make patchcheck" to work with MQ.
Patch by Francisco Martín Brugué
14 years ago
Benjamin Peterson
c9f54cf512
enable hash randomization by default
14 years ago
Martin v. Löwis
6ca5a4d49f
Issue #12406 : Update list of files.
14 years ago
Martin v. Löwis
61f996b26a
Issue #12406 : prevent case where shortened name could conflict with short name.
14 years ago
Martin v. Löwis
dbd3f6173a
Issue #6807 : Run msisupport.mak earlier.
14 years ago
Martin v. Löwis
26bb3cf7cd
Issue #10580 : Minor grammar change in Windows installer.
14 years ago
Benjamin Peterson
71f660e00f
update to Unicode 6.1
14 years ago
Benjamin Peterson
ad9c569825
delta encoding of upper/lower/title makes a glorious return ( #12736 )
14 years ago
Benjamin Peterson
d5890c8db5
add str.casefold() ( closes #13752 )
14 years ago
Victor Stinner
d208416a40
Issue #13628 : python-gdb.py is now able to retrieve more frames in 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()
14 years ago
Benjamin Peterson
b2bf01d824
use full unicode mappings for upper/lower/title case ( #12736 )
Also broaden the category of characters that count as lowercase/uppercase.
14 years ago
Victor Stinner
8f23be7189
iobench.py: add more info in the header
Write the Python version, Unicode implementation and the platform.
14 years ago
Antoine Pitrou
ca2a1a335a
Fix test_gdb failure
14 years ago
Florent Xicluna
aa6c1d240f
Issue #13575 : there is only one class type.
14 years ago
Victor Stinner
0c4fbff6a7
libpython.py: defer call to gdb.lookup_type('PyUnicodeObject')
The lookup fails at startup if Python is linked to a shared library.
14 years ago
Nadeem Vawda
3ff069ebc6
Issue #6715 : Add module for compression using the LZMA algorithm.
14 years ago
Victor Stinner
f16a350baf
Oops, really fix gdb/libpython.py for not ready Unicode strings
14 years ago
Victor Stinner
e30c0a1014
Fix gdb/libpython.py for not ready Unicode strings
_PyUnicode_CheckConsistency() checks also hash and length value for not ready
Unicode strings.
14 years ago
Ezio Melotti
931b8aac80
#12753 : Add support for Unicode name aliases and named sequences.
15 years ago
Antoine Pitrou
74472a94aa
Fix a missing encoding argument when opening a text file in some of iobench's subtests.
(found by Georg)
15 years ago
Antoine Pitrou
3c0c5f29dd
Fix test_gdb following the small unicode struct change in c25262e97304 (issue #13130 )
15 years ago
Ezio Melotti
a9860aeb08
#13054 : fix usage of sys.maxunicode after PEP-393.
15 years ago
Victor Stinner
a3b334da6d
PyUnicode_Ready() now sets ascii=1 if maxchar < 128
ascii=1 is no more reserved to PyASCIIObject. Use
PyUnicode_IS_COMPACT_ASCII(obj) to check if obj is a PyASCIIObject (as before).
15 years ago
Antoine Pitrou
87ae0a2804
Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':
Issue #12804 : Prevent "make test" from using network resources.
15 years ago
Ezio Melotti
2a1e926d63
Fix ResourceWarnings in makeunicodedata.py.
15 years ago
Martin v. Löwis
24fa9832be
Update for PEP 393.
15 years ago
Martin v. Löwis
d63a3b8beb
Implement PEP 393.
15 years ago
Martin v. Löwis
73abc24345
Add 3.2.2 and 3.2.3 UUIDs.
15 years ago
Nadeem Vawda
08aa3c0235
Issue #12804 : Prevent "make test" from using network resources.
15 years ago
Antoine Pitrou
7f0a6ddb90
Use -n for tests under Windows
15 years ago
Éric Araujo
1bf5b6a454
Update crlf and lfcr scripts for 3.x bytes semantics ( #12032 ).
Changes to crlf originally by Victor Stinner for 3.3, copied to lfcr by
me. Manually tested.
15 years ago
Éric Araujo
fbc5ff6235
patchcheck: don’t talk about the test suite when no code file were changed.
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.
15 years ago
Jason R. Coombs
88bf51baff
Corrected attribute docstring per pep-257 (reference #10639 )
15 years ago
Nadeem Vawda
328b5015a2
Clean up description of Tools/scripts/run_tests.py.
Also, add an entry for the script in Tools/scripts/README.
15 years ago
Nadeem Vawda
3c01d16ed9
Issue #11651 : Move options for running tests into a Python script.
This will be particularly useful to Windows users.
run_tests.py originally written by Brett Cannon.
15 years ago
Éric Araujo
56ec5fe950
Small cleanup
15 years ago
Éric Araujo
a3e072bb89
Let “make patchcheck” work for out-of-dir builds ( #9860 )
15 years ago
Jason R. Coombs
47891044c9
Issue #10639 : spec_newline wasn't defined globally unless main() was called; now spec_newline is set at module import/execution
15 years ago
Éric Araujo
a0e92a8028
Fix missing or wrong shebangs and missing executable bits for scripts ( #10318 )
15 years ago
Jason R. Coombs
76eec3db21
Issue #10639 : reindent.py tool now accepts a --newline option to specify the newline to be used in the output of converted files.
15 years ago
Éric Araujo
1ce7b17165
Fix string exception and a few style issues in mailerdaemon script
15 years ago
Jason R. Coombs
76748b7033
Fixes #10639 : reindent.py should not convert newlines
reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
15 years ago
Vinay Sajip
4334d740ed
Issue #12406 : Added upates for packaging's .exe files, command_template, and sysconfig.cfg.
15 years ago
Victor Stinner
d57c5c8a3a
libpython.py (gdb) now catchs IOError in py-list and py-bt commands
py-list displays the error. py-bt ignores the error (the filename and line
number is already displayed).
15 years ago
Benjamin Peterson
4177eff088
general cleaning up
15 years ago
Benjamin Peterson
fbf528f06c
remove svn support
15 years ago
R David Murray
6a73845082
#11781 : update windows build script to account for move of email tests
15 years ago
Éric Araujo
9f0df8bdb8
Remove wsgiref.egg-info from msi.py (follow-up to d615eb7bce33, #12218 )
15 years ago