Martin Panter
4f8aaf6440
Issue #16484 : Fix pydoc link and test on Windows, by Kaushik Nadikuditi
10 years ago
Martin Panter
0c0da48aed
Issue #24136 : Document generalized unpacking, PEP 448
Based on patches by Konstantin Molchanov and Neil Girdhar.
10 years ago
Łukasz Langa
0d18c15fbf
Issue #14209 : pkgutil.iter_zipimport_modules ignores the prefix for packages
Patch by James Pickering.
10 years ago
Łukasz Langa
e7f27481a8
Issue #27194 : superfluous truncate calls in tarfile.py slow down extraction
Patch by Jason Fried.
10 years ago
Benjamin Peterson
196d7db395
upgrade expt to 2.1.1 ( closes #26556 )
10 years ago
Benjamin Peterson
46b32f307c
raise an error when STARTTLS fails
10 years ago
Berker Peksag
742192a4fe
Issue #21386 : Implement missing IPv4Address.is_global property
It was documented since 07a5610bae9d.
Initial patch by Roger Luethi.
10 years ago
Terry Jan Reedy
fa089b9b0b
Issue #22558 : Add remaining doc links to source code for Python-coded modules.
Reformat header above separator line (added if missing) to a common format.
Patch by Yoni Lavi.
10 years ago
Yury Selivanov
c92bf83a82
Issue #22970 : asyncio: Fix inconsistency cancelling Condition.wait.
Patch by David Coles.
10 years ago
Yury Selivanov
ca2e0a48cf
Issue #27223 : aio: Fix _read_ready and _write_ready to respect _conn_lost.
Patch by Łukasz Langa.
10 years ago
Terry Jan Reedy
8ace13be39
Issue #5124 : NEWS entries.
10 years ago
Berker Peksag
904a2ef2e2
Issue #20900 : distutils register command now decodes HTTP responses correctly
Initial patch by ingrid.
10 years ago
doko@ubuntu.com
87a8bcc221
- Issue #17500 , and https://github.com/python/pythondotorg/issues/945 : Remove
unused and outdated icons.
10 years ago
Yury Selivanov
a6f6edbda8
Issue #27243 : Fix __aiter__ protocol
10 years ago
Barry Warsaw
480e28538d
Issue #27066 : Fixed SystemError if a custom opener (for open()) returns
a negative number without setting an exception.
10 years ago
Guido van Rossum
fda4d67842
Omnibus news entry for updates to typing.py.
10 years ago
Yury Selivanov
07a9fcdc86
asyncio: Remove line about asyncio.timeout() from the NEWS file
10 years ago
Martin Panter
e42e129ebe
Issue #25738 : Don’t send message body for 205 Reset Content
Patch by Susumu Koshiba.
10 years ago
Martin Panter
4e50553823
Issue #21313 : Tolerate truncated buildinfo in sys.version
10 years ago
Terry Jan Reedy
8bff8f6953
Items for NEWS and idlelib/NEWS.txt.
10 years ago
Victor Stinner
dddf4849ec
os.urandom() doesn't block on Linux anymore
Issue #26839 : On Linux, os.urandom() now calls getrandom() with GRND_NONBLOCK
to fall back on reading /dev/urandom if the urandom entropy pool is not
initialized yet. Patch written by Colm Buckley.
10 years ago
Martin Panter
9c2a8f97da
Issue #27229 : Fix in-tree cross-build rule, by Xavier de Gaye
10 years ago
Ned Deily
8f5798edfb
Issue #26014 : Update 3.x packaging documentation:
- "See also" links to the new docs are now provided in the legacy pages
- links to setuptools documentation have been updated
(original patch by Susan Sun)
10 years ago
Martin Panter
3f0ee83f14
Issue #27164 : Allow decompressing raw Deflate streams with predefined zdict
Based on patch by Xiang Zhang.
10 years ago
Martin Panter
ed0425c60a
Issue #24291 : Avoid WSGIRequestHandler doing partial writes
If the underlying send() method indicates a partial write, such as when the
call is interrupted to handle a signal, the server would silently drop the
remaining data.
Also add deprecated support for SimpleHandler.stdout.write() doing partial
writes.
10 years ago
Ned Deily
92b4b5a863
Issue #26930 : Update OS X 32-bit-only installer builds to use OpenSSL 1.0.2h.
10 years ago
doko@ubuntu.com
6ada01234d
- Issue #26884 : Fix linking extension modules for cross builds.
Patch by Xavier de Gaye.
10 years ago
Serhiy Storchaka
41e9ad1ef4
Issue #21916 : Added tests for the turtle module.
Patch by ingrid, Gregory Loyse and Jelle Zijlstra.
10 years ago
Zachary Ware
c17a0b87a6
Issue #26809 : Add __all__ to string module. Patch by Emanuel Barry
10 years ago
Serhiy Storchaka
64a263a1ce
Issue #20041 : Fixed TypeError when frame.f_trace is set to None.
Patch by Xavier de Gaye.
10 years ago
Martin Panter
3ee6270262
Fix typos in code comment and documentation
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
1ef8c7e886
Fixes Issue #26373 : subprocess.Popen.communicate now correctly ignores
BrokenPipeError when the child process dies before .communicate()
is called in more (all?) circumstances.
10 years ago
R David Murray
ead9bfc5c3
#16484 : Fix pydoc doc links to modules whose names are mixed case.
Patch by Sean Rodman, test by Kaushik N.
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
d6da7604d3
Issue #27167 : Clarify the subprocess.CalledProcessError error message text
when the child process died due to a signal.
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
aea1650389
typo fix
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
cef1f83c71
Issue #25931 : Don't defining socketserver.Forking* names on platforms such
as Windows that do not support os.fork().
10 years ago
R David Murray
dd4fcf52f4
#26829 : Clarify that namespace is copied to a new __dict__ in instance creation.
Patch by Emily Morehouse.
10 years ago
R David Murray
a32c738ad7
#27185 : move test_pep292 into test_string.
This makes the Template tests discoverable. Patch by Erin Braswell.
10 years ago
Berker Peksag
6a8e626a60
Issue #21776 : distutils.upload now correctly handles HTTPError
Initial patch by Claudiu Popa.
10 years ago
R David Murray
947ff38725
#20973 : add total ordering tests for ipaddress
Patch by Tommy Beadle.
10 years ago
Benjamin Peterson
53595c4879
replace custom validation logic in the parse module with a simple DFA validator ( closes #26526 )
Patch from A. Skrobov.
10 years ago
Kushal Das
9cd39a170b
Issue #21271 : Adds new keyword only parameters in reset_mock call
We now have two keyword only parameters in the reset_mock function to
selectively reset the return_value or the side_effects, or both.
10 years ago
Martin Panter
e26da7c03a
Issue #27171 : Fix typos in documentation, comments, and test function names
10 years ago
Terry Jan Reedy
f45d27bcc3
Add items to MISC/NEWS and idlelib/NEWS.txt.
10 years ago
Martin Panter
a90a4a9651
Issue #27125 : Remove duplicated words from documentation and comments
10 years ago
Martin Panter
8d56c026a5
Issue #27125 : Fix various errors like “will [be] inherited”
10 years ago
Benjamin Peterson
c352620c92
backout 3c9512d8ac0d
10 years ago
Eric Snow
338502b307
Issue #27147 : Mention PEP 420 in the importlib docs.
10 years ago
Raymond Hettinger
672866d009
Issue 25926: Clarify that the pure python equivalents are only approximate.
10 years ago
Raymond Hettinger
819581b843
Issue 25926: Clarify that the pure python equivalents are only approximate.
10 years ago