Martin v. Löwis
5284f80268
Issue #18569 : The installer now adds .py to the PATHEXT variable
when extensions are registered. Patch by Paul Moore.
13 years ago
Martin v. Löwis
85a4847f07
Add UUID for 3.4.
13 years ago
Terry Jan Reedy
6e2711b345
Issue #18439 : Make patchcheck work on Windows for ACKS, NEWS.
13 years ago
Serhiy Storchaka
6a98fe9edd
Issue #18448 : Fix a typo in Tools/demo/eiffel.py.
13 years ago
Serhiy Storchaka
ec7ddd9028
Issue #18457 : Fixed saving of formulas and complex numbers in Tools/demo/ss1.py.
Useed context managers for file I/O.
Removed out-of-dated code and misleading comments.
13 years ago
Serhiy Storchaka
2670b9acb6
Issue #18449 : Make Tools/demo/ss1.py work again on Python 3. Patch by
Févry Thibault.
13 years ago
Brett Cannon
53e600c24a
Issue #17177 : update checkpyc to stop using imp
13 years ago
Serhiy Storchaka
e7275ffa4c
Issue #15239 : Make mkstringprep.py work again on Python 3.
13 years ago
Serhiy Storchaka
369d05a616
Fix some bugs in Tools/scripts/abitype.py.
13 years ago
Georg Brandl
84fc4ba67e
Closes #17962 : Build with OpenSSL 1.0.1e on Windows.
13 years ago
David Malcolm
d08b210164
#17833 : fix test_gdb failures seen on PPC64 Linux in test_threads (test.test_gdb.PyBtTests)
13 years ago
Ned Deily
67804e9838
Issue #17801 : fix shebang line of gprof2html.py
13 years ago
Victor Stinner
d8a5cc91e6
python-gdb.py: Replace invalid Unicode character with U+FFFD to be able to
display invalid strings. Such strings can be found while Python is creating a
new string, in a text decoder for example, when Python is compiled in debug
mode.
13 years ago
Martin v. Löwis
b147aae26f
Add 3.2.4 UUIDs
13 years ago
Victor Stinner
765531d2d0
Issue #17516 : use comment syntax for comments, instead of multiline string
13 years ago
Martin v. Löwis
cc0b927b74
Issue #17425 : Build with openssl 1.0.1d on Windows.
13 years ago
Martin v. Loewis
5be6d74a0d
Issue #17425 : Build with openssl 1.0.0k on Windows.
13 years ago
Martin v. Loewis
18613e6e7b
Issue #17425 : Build against openssl 0.9.8y on Windows.
13 years ago
Benjamin Peterson
cda75be02a
unify some ast.argument's attrs; change Attribute column offset ( closes #16795 )
Patch from Sven Brauch.
13 years ago
Terry Jan Reedy
65e69b3718
Issue #17047 : removed doubled words in Doc/*, Mac/*, and Tool/*
found by Serhiy Storchaka and Matthew Barnett
13 years ago
Terry Jan Reedy
6bf9b85859
Issue #17047 : removed doubled words in Doc/*, Mac/*, and Tool/*
found by Serhiy Storchaka and Matthew Barnett
13 years ago
Serhiy Storchaka
b6ed17344b
Issue #17156 : pygettext.py now uses an encoding of source file and correctly
writes and escapes non-ascii characters.
13 years ago
Serhiy Storchaka
15ea3ac67a
Issue #17156 : pygettext.py now correctly escapes non-ascii characters.
13 years ago
Ezio Melotti
3f5db3940f
Fix a few typos and a double semicolon. Patch by Eitan Adler.
13 years ago
Martin v. Löwis
3f50bf652b
Drop support for Windows 2000; allow any XP API (but not Vista+).
Drop SDK version configuration for Tk compilation, to not bind it to W2k
anymore. Binding it to XP would conflict with Tk's own binding of tkMenu to W2k.
13 years ago
doko@python.org
3e6e2ac31d
- Issue #17029 : Let h2py search the multiarch system include directory.
13 years ago
doko@python.org
4e63fbe04d
- Issue #17029 : Let h2py search the multiarch system include directory.
13 years ago
Serhiy Storchaka
a3a01b6ac3
Issue #15539 : Fix a backup file creation in pindent.py on Windows.
13 years ago
Serhiy Storchaka
dfae912d80
Issue #15539 : Fix backup file creation in pindent.py on Windows
13 years ago
Ezio Melotti
5e12bb728f
Add a note about checking refleaks to patchcheck.
13 years ago
Ezio Melotti
9e9cb2810e
Add a note about checking refleaks to patchcheck.
13 years ago
Serhiy Storchaka
6840a54ad4
Issue #15539 : Fix a number of bugs in Tools/scripts/pindent.py.
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.
13 years ago
Serhiy Storchaka
8cd7f82024
Issue #15539 : Fix a number of bugs in Tools/scripts/pindent.py.
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.
13 years ago
Andrew Svetlov
8b33dd8e54
Use OESeeror instead of os.error ( #16720 )
Patch by Serhiy Storchaka.
13 years ago
Brian Curtin
445ad997ab
Fix #14470 . Remove w9xpopen per PEP 11.
As stated in PEP 11, 3.4 removes code on Windows platforms where
COMSPEC points to command.com. The w9xpopen project in Visual Studio
was added to support that case, and there was a special case in subprocess
to cover that situation. This change removes the w9xpopen project from
the Visual Studio solution and removes any references to the w9xpopen
executable.
13 years ago
Andrew Svetlov
2606a6f197
Issue #16719 : Get rid of WindowsError. Use OSError instead
Patch by Serhiy Storchaka.
13 years ago
Andrew Svetlov
4bb142b1b7
Issue #16714 : use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
13 years ago
Andrew Svetlov
737fb89dd1
Issue #16714 : use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
13 years ago
Andrew Svetlov
6b2cbeba58
Issue #16421 : allow to load multiple modules from the same shared object.
Patch by Václav Šmilauer.
13 years ago
Benjamin Peterson
442f20996d
create NameConstant AST class for None, True, and False literals ( closes #16619 )
13 years ago
Ezio Melotti
9bf379e9fb
#13301 : use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka.
13 years ago
Ezio Melotti
dc118790de
#13301 : use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka.
13 years ago
Nick Coghlan
10d6ddeef1
Issue #5765 : Also check the compiler when finding the recursion limit
13 years ago
Vinay Sajip
65e2bef4f0
Issue #16340 : exclude venv/scripts from byte-compilation at installation time on Windows.
13 years ago
Ezio Melotti
ccc9e617f5
#16245 : add a script to generate the html.entities.html5 dict.
13 years ago
Christian Heimes
efb15993f8
Add _sha3.pyd to list of extension modules for MSI
13 years ago
Antoine Pitrou
1eff0fc3cd
Issue #15378 : Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka.
13 years ago
Benjamin Peterson
b29614e047
compare singletons by identity not equality ( closes #16712 )
Patch from Serhiy Storchaka.
13 years ago
Jesus Cea
f1af705720
#16135 : Removal of OS/2 support (Remove OS2 and OS/2 references)
13 years ago
Jesus Cea
b176203dda
#16135 : Removal of OS/2 support (C code and Docs)
13 years ago