Guido van Rossum
66078ac5d0
Issue #25002 : Back out asyncore/asynchat deprecation.
9 years ago
Martin Panter
4afdca056b
Issue #26240 : Clean up the subprocess module doc string
Patch by Tim Mitchell.
9 years ago
Serhiy Storchaka
36888dd970
Issue #28353 : Fixed tests of os.fwalk() with broken links.
9 years ago
Serhiy Storchaka
28f982060c
Issue #28353 : Try to fix tests.
9 years ago
Guido van Rossum
16591f440d
Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.
9 years ago
Serhiy Storchaka
4832580596
Issue #27275 : Fixed implementation of pop() and popitem() methods in
subclasses of accelerated OrderedDict.
9 years ago
Serhiy Storchaka
0595ed21ba
Issue #28255 : calendar.TextCalendar.prweek() no longer prints a space after
a weeks's calendar. calendar.TextCalendar.pryear() no longer prints redundant
newline after a year's calendar. Based on patch by Xiang Zhang.
9 years ago
Serhiy Storchaka
7ff51bd2b8
Issue #28255 : calendar.TextCalendar().prmonth() no longer prints a space
at the start of new line after printing a month's calendar. Patch by
Xiang Zhang.
9 years ago
Serhiy Storchaka
f3ebc9fe3f
Issue #20491 : The textwrap.TextWrapper class now honors non-breaking spaces.
Based on patch by Kaarle Ritvanen.
9 years ago
Serhiy Storchaka
42bababba6
Issue #28353 : os.fwalk() no longer fails on broken links.
9 years ago
Serhiy Storchaka
036fb15435
Issue #28314 : Added tests for xml.etree.ElementTree.Element.getiterator().
9 years ago
Serhiy Storchaka
b1f5287952
Issue #27025 : Generated names for Tkinter widgets now start by the "!" prefix
for readability (was "`").
9 years ago
Serhiy Storchaka
071dec2027
Issue #25464 : Fixed HList.header_exists() in tkinter.tix module by addin
a workaround to Tix library bug.
9 years ago
Raymond Hettinger
712d593e49
Issue #5830 : Remove old comment. Add empty slots.
9 years ago
Yury Selivanov
01c521ba7a
asyncio: Increase asyncio.Future test coverage; test both implementations.
Also, add 'isfuture' to 'asyncio.futures.__all__', so that it's
exposed as 'asyncio.isfuture'.
9 years ago
Serhiy Storchaka
0211bb78fd
Some distutils tests require zlib for creating tar.gz source distribution.
9 years ago
Serhiy Storchaka
b4293efd93
Issue #28115 : ZIP creation test requires zlib.
9 years ago
Serhiy Storchaka
666de77727
Issue #28488 : shutil.make_archive() no longer adds entry "./" to ZIP archive.
9 years ago
Serhiy Storchaka
d3ff784f2d
Issue #28469 : timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead
of 1, 10, 100,... for autoranging.
9 years ago
Serhiy Storchaka
8c9331057d
Issue #28115 : Command-line interface of the zipfile module now uses argparse.
Added support of long options.
9 years ago
Serhiy Storchaka
61c4c44b2a
Issue #28115 : Added tests for CLI of the zipfile module.
9 years ago
Serhiy Storchaka
662cef66d7
Issue #25953 : re.sub() now raises an error for invalid numerical group
reference in replacement template even if the pattern is not found in
the string. Error message for invalid group reference now includes the
group index and the position of the reference.
Based on patch by SilentGhost.
9 years ago
Guido van Rossum
52e5004b59
Issue #27989 : Tweak inspect.formatannotation() to improve pydoc rendering of function annotations. Ivan L.
9 years ago
Martin Panter
1002a621c1
Issue #28435 : Avoid no_proxy environment variable interfering with tests
Patch by Piotr Szczepaniak.
9 years ago
Martin Panter
d60ea5ff00
Issue #26620 : Fix ResourceWarning in test_urllib2_localnet
* Use context manager on urllib objects to ensure that they are closed on error
* Use self.addCleanup() to cleanup resources even if a test is interrupted
with CTRL+c
This backports a patch by Victor Stinner.
9 years ago
Guido van Rossum
3b557991d4
Two minor typing.py fixes (upstream #305 )
9 years ago
Guido van Rossum
ac353dfa14
Issue #28482 : Skip a few test_typing tests if asyncio unavailable
9 years ago
Yury Selivanov
e8a6045fea
Issue #26796 : Don't configure the number of workers for default threadpool executor.
Initial patch by Hans Lawrenz.
9 years ago
Guido van Rossum
9f91e858ce
Fix indent
9 years ago
Guido van Rossum
7ef22d6b96
Sync typing.py from upstream
9 years ago
Yury Selivanov
3d67615a48
Issue #26923 : Fix asyncio.Gather to refuse being cancelled once all children are done.
Patch by Johannes Ebke.
9 years ago
Yury Selivanov
ed0540698e
Issue #28500 : Fix asyncio to handle async gens GC from another thread.
9 years ago
Serhiy Storchaka
d5d32d2127
Issue #28214 : Improved exception reporting for problematic __set_name__
attributes.
9 years ago
Serhiy Storchaka
467ab194fc
Issue #28410 : Added _PyErr_FormatFromCause() -- the helper for raising
new exception with setting current exception as __cause__.
_PyErr_FormatFromCause(exception, format, args...) is equivalent to Python
raise exception(format % args) from sys.exc_info()[1]
9 years ago
INADA Naoki
0a421a28f8
Issue #18219 : Optimize csv.DictWriter for large number of columns.
Patch by Mariatta Wijaya.
9 years ago
INADA Naoki
a83636247e
Issue #28448 : Fix C implemented asyncio.Future didn't work on Windows
9 years ago
Martin Panter
741d4940fe
Issue #23214 : Remove BufferedReader.read1(-1) workaround
9 years ago
Martin Panter
ccb2c0e310
Issue #23214 : Implement optional BufferedReader, BytesIO read1() argument
9 years ago
Martin Panter
56b2cf5e85
Issue #28484 : Skip tests if GIL is not used or multithreading is disabled
9 years ago
Yury Selivanov
a4b884f900
Issue #28492 : Fix how StopIteration is raised in _asyncio.Future
9 years ago
Martin Panter
10f29c9037
Issue #28471 : Avoid ResourceWarning by detaching test socket
9 years ago
Martin Panter
94332cba0f
Issue #28480 : Adjust or skip tests if multithreading is disabled
9 years ago
Victor Stinner
af48a91715
Issue #28240 : Fix formatting of the warning.
9 years ago
Xavier de Gaye
24c3b4928e
Issue #26944 : Fix test_posix for Android where 'id -G' is entirely wrong
or missing the effective gid.
9 years ago
Victor Stinner
bd1b49a242
Close #28476 : Reuse math.factorial() in test_random
Patch written by Francisco Couzo.
9 years ago
Yury Selivanov
fa22b29960
Issue #28471 : Fix crash (GIL state related) in socket.setblocking
9 years ago
Victor Stinner
62cca920db
timeit: add newlines to output for readability
Issue #28240 .
9 years ago
Victor Stinner
c3e40f8c5b
timeit: add nsec (nanosecond) unit for format timings
Issue #28240 .
9 years ago
Victor Stinner
61de57f175
timeit: enhance format of raw timings (in verbose mode)
Issue #28240 .
9 years ago
Victor Stinner
3d7feb9ac2
timeit: remove --clock and --time options
Issue #28240 : timeit: remove -c/--clock and -t/--time command line options
which were deprecated since Python 3.3.
9 years ago