Zachary Ware
cb2ad801ac
Closes #18604 : Merge with 3.4
12 years ago
Zachary Ware
ceced6bfea
Issue #18604 : Consolidated checks for GUI availability.
test_support._is_gui_available is now defined the same way on every
platform, and now includes the Windows-specific check that had been in the
Windows version of _is_gui_available and the OSX-specific check that was
in tkinter.test.support.check_tk_availability. Also, every platform
checks whether Tk can be instantiated (if the platform-specific checks
passed).
12 years ago
Stefan Krah
6b7786bac2
Use $type instead of $cls in the signature specification.
12 years ago
Stefan Krah
6b794b8b59
Fix typo and tests without docstrings.
12 years ago
Stefan Krah
5de1f82464
Issue #21407 : _decimal now supports function signatures.
12 years ago
Martin v. Löwis
b9e71d4a55
Merge with 3.4
12 years ago
Antoine Pitrou
161d695fb0
Issue #21377 : PyBytes_Concat() now tries to concatenate in-place when the first argument has a reference count of 1.
Patch by Nikolaus Rath.
12 years ago
Martin v. Löwis
3d5c9e2c67
Update to 1.0.1g
12 years ago
Zachary Ware
991fd2888c
Unite 'Build' sections of Misc/NEWS
12 years ago
Zachary Ware
45bc17b6b4
Issue #19962 : The Windows build process now creates "python.bat"
in the root of the source tree, which passes all arguments through
to the most recently built interpreter.
12 years ago
Stefan Krah
b151f8f60b
Issue #10650 : Remove the non-standard 'watchexp' parameter from the
Decimal.quantize() method in the Python version. It had never been
present in the C version.
12 years ago
Benjamin Peterson
5c2ac8c1c6
setup.py: report modules which built but import failed ( closes #21282 )
Patch by Lukas Vacek.
12 years ago
Gregory P. Smith
30a6df5b64
Document the subprocess Popen.args attribute (issue21353)
12 years ago
Gregory P. Smith
d8ea56d26d
Document the subprocess Popen.args attribute (issue21353)
12 years ago
Gregory P. Smith
024c5eecbc
Document the subprocess Popen.args attribute (issue21353)
12 years ago
Stefan Krah
7c115f8aef
Null merge.
12 years ago
Stefan Krah
8fb74a35da
Issue #21374 : Fix pickling of DecimalTuple.
12 years ago
Stefan Krah
f1d4e42195
Issue #21374 : Fix pickling of DecimalTuple.
12 years ago
Jesus Cea
ae43046b61
MERGE: Closes issue #21316 : mark test_devpoll to be meaningfull only for Solaris
12 years ago
Jesus Cea
da25109fbc
Closes issue #21316 : mark test_devpoll to be meaningfull only for Solaris
12 years ago
Zachary Ware
e83ce4b90f
Closes #17386 : Merge with 3.4
12 years ago
Zachary Ware
a67b97f438
Issue #17386 : Expand Doc/make.bat to be much more similar to Doc/Makefile
12 years ago
Zachary Ware
1de519c60d
Issue #17386 : Update Doc/README.txt to list all targets
supported by Doc/Makefile, as well as a bit of modernization,
cleanup, and notes about the difference between Unix and Windows.
12 years ago
Zachary Ware
9393fffa5f
Issue #17386 : List the 'htmlview' target in the Doc/Makefile help output.
12 years ago
Antoine Pitrou
32497f89bb
Issue #21321 : itertools.islice() now releases the reference to the source iterator when the slice is exhausted.
Patch by Anton Afanasyev.
12 years ago
Antoine Pitrou
26f82efe59
Issue #21321 : itertools.islice() now releases the reference to the source iterator when the slice is exhausted.
Patch by Anton Afanasyev.
12 years ago
Antoine Pitrou
3f73e4c715
Fix failure in test_poplib after issue #20951 .
12 years ago
Antoine Pitrou
b8503896ad
Issue #21057 : TextIOWrapper now allows the underlying binary stream's read() or read1() method to return an arbitrary bytes-like object (such as a memoryview).
Patch by Nikolaus Rath.
12 years ago
Antoine Pitrou
92c4d45326
Add porting note for issue #20951 .
12 years ago
Antoine Pitrou
b4bebdafe3
Issue #20951 : SSLSocket.send() now raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket if the operation would block. Previously, it would return 0.
Patch by Nikolaus Rath.
12 years ago
Terry Jan Reedy
727a463aa6
Merge with 3.4
12 years ago
Terry Jan Reedy
9cc9026294
Issue #21055 : Index (augmented) assignment symbols.
12 years ago
Terry Jan Reedy
e9dcfd1870
Merge with 3.4
12 years ago
Terry Jan Reedy
7c895edabc
Closes 21048: Index 'as' in import and with statements.
12 years ago
Terry Jan Reedy
c763807d9b
Merge with 3.4
12 years ago
Terry Jan Reedy
43e7cd38e5
Issue #21026 : Augment site doc based on experiments. Patch by Carol Willing.
12 years ago
Giampaolo Rodola'
7971286b6e
merge heads
12 years ago
Giampaolo Rodola'
8af740c46a
fix isuse #13248 : remove previously deprecated asyncore.dispatcher __getattr__ cheap inheritance hack.
12 years ago
Antoine Pitrou
05da1ef40a
Issue #18727 : improve test coverage of the csv module by testing for DictWriter.writerows.
Patch by Muhammad Jehanzeb.
12 years ago
Antoine Pitrou
63aeb71909
Issue #9307 : document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by Yury V. Zaytsev.
12 years ago
Antoine Pitrou
f9f54a2f5f
Issue #9307 : document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by Yury V. Zaytsev.
12 years ago
Antoine Pitrou
b1e58440f8
Issue #9815 : assertRaises now tries to clear references to local variables in the exception's traceback.
12 years ago
Antoine Pitrou
9681022f1e
Issue #9815 : assertRaises now tries to clear references to local variables in the exception's traceback.
12 years ago
Antoine Pitrou
a171979a19
Remove a workaround for fixed issue #20355 .
12 years ago
Antoine Pitrou
6999441d62
Issue #20355 : -W command line options now have higher priority than the PYTHONWARNINGS environment variable. Patch by Arfrever.
12 years ago
Ned Deily
7fae75a415
Issue #17861 : Allow generate_opcode_h to run with a system Python 2.5.
Patch by David Bolen.
12 years ago
Antoine Pitrou
285a163a4c
Issue #21312 : Update the thread_foobar.h template file to include newer threading APIs. Patch by Jack McCracken.
12 years ago
Antoine Pitrou
c695c95626
Issue #19940 : ssl.cert_time_to_seconds() now interprets the given time string in the UTC timezone (as specified in RFC 5280), not the local timezone.
Patch by Akira.
12 years ago
Antoine Pitrou
3a74ce2088
Issue #13204 : Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError.
12 years ago
Antoine Pitrou
871dfc41d3
Issue #13204 : Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError.
12 years ago