Serhiy Storchaka
e670be2273
Issue #27029 : Removed deprecated support of universal newlines mode from ZipFile.open().
10 years ago
Serhiy Storchaka
9bd85b83f6
Issue #27030 : Unknown escapes consisting of ``'\'`` and ASCII letter in
regular expressions now are errors.
10 years ago
Brett Cannon
96881cd621
Issue #27186 : Add os.PathLike support to DirEntry
Initial patch thanks to Jelle Zijlstra.
10 years ago
Brett Cannon
568be63248
Issue #27186 : Add os.PathLike support to pathlib.
This adds support both to pathlib.PurePath's constructor as well as
implementing __fspath__(). This removes the provisional status for
pathlib.
Initial patch by Dusty Phillips.
10 years ago
Berker Peksag
420e4d843b
Issue #27280 : Fix typo in IPv6Network documentation
Patch by Arthur Carcano.
10 years ago
Serhiy Storchaka
f41b82fb19
Issue #26282 : PyArg_ParseTupleAndKeywords() and Argument Clinic now support
positional-only and keyword parameters in the same function.
10 years ago
Berker Peksag
b18ffb4dd8
Add a versionadded directive to os.PathLike
10 years ago
Martin Panter
553245c6f5
Issue #8491 : Add link to Gnu Readline configuration documentation
10 years ago
Brett Cannon
746102bd23
Issue #27186 : Document PyOS_FSPath().
10 years ago
Brett Cannon
b08388d5f2
Issue #27182 : Document os.PathLike.
Part of PEP 519.
10 years ago
Brett Cannon
516f5461b0
Add a missing :term:.
10 years ago
Brett Cannon
0fa1aa1975
Clarify the os.fspath() documentation.
10 years ago
Yury Selivanov
a6f6edbda8
Issue #27243 : Fix __aiter__ protocol
10 years ago
Yury Selivanov
c1cf296de6
asyncio: Remove asyncio.timeout() context manager.
It will probably be added back in Python 3.6, once its compatibility
issues are resolved; see [1] for more details.
[1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html
10 years ago
Yury Selivanov
af74512e44
asyncio: Update whatsnew/3.5.2
10 years ago
Yury Selivanov
55c5084223
Issue #27136 : Update asyncio docs
10 years ago
Martin Panter
b198c42bcb
Fix RST conflicts with Idle news entries
10 years ago
Martin Panter
7d7a11b5d7
Issue #23275 : Backport target list assignment documentation fixes
10 years ago
Berker Peksag
84f387d420
Issue #21593 : Clarify that re.search() returns the first match
10 years ago
Martin Panter
e42e129ebe
Issue #25738 : Don’t send message body for 205 Reset Content
Patch by Susumu Koshiba.
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
0d3535a6ab
Issue #23883 : News updates for __all__ attributes
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
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
Senthil Kumaran
889f914edb
issue27202 - Fix the mistake in changesets 70af472451cb (3.5) and 2bb806539ca6 (3.6)
exclude_patterns in Sphinx conf.py will exclude the .rsts from the build. It
was incorrect exclude 2.x rsts in that. This fix contributed again Jelle
Zijlstra, excludes doctests in whatsnew/2.7.rst from being exercised by using
doctests skip option.
10 years ago
Berker Peksag
03fe0027fb
Issue #17888 : Add a note about contributing to Python docs
Patch by Terry Chia and Laura Rupprecht.
10 years ago
Berker Peksag
94f89a6e02
Fix typos in datetime documentation.
10 years ago
Senthil Kumaran
ff6c5c5466
issue27202 - Exclude 2.x release notes from python3 make doctests.
Patch contributed by Jelle Zijlstra.
10 years ago
Senthil Kumaran
7749320142
Issue27203 - Fix doctests Doc/faq/programming.rst.
Patch contributed by Jelle Zijlstra.
10 years ago
Nick Coghlan
b4b966ece2
Issue #19611 : handle implicit parameters in inspect.signature
inspect.signature now reports the implicit ``.0`` parameters generated by
the compiler for comprehension and generator expression scopes as if they
were positional-only parameters called ``implicit0``.
Patch by Jelle Zijlstra.
10 years ago
Ethan Furman
d62548afed
issue27186: add open/io.open; patch by Jelle Zijlstra
10 years ago
Kushal Das
89beb27061
Issue #19234 : Documents socket.fileno() returns -1 on failure
10 years ago
Ned Deily
32db43867c
Issue 27216: Fix typo (noticed by Alex Chan).
10 years ago
Martin Panter
3ee6270262
Fix typos in code comment and documentation
10 years ago
R David Murray
11aaa42d1c
psuedo merge: #22797 : clarify when URLErrors are raised by urlopen.
I'm not sure how my previous merge commit got screwed up, hopefully this
one will do the right thing.
10 years ago
R David Murray
21dcb932a7
#22797 : clarify when URLErrors are raised by urlopen.
10 years ago
Senthil Kumaran
7ee91942b4
issue27113 - Document "check_same_thread" parameter in sqlite3.connect api.
Patch contributed by Dave Sawyer.
10 years ago
Senthil Kumaran
0779129302
issue8519 - Reference termios and ioctl manual pages in the library documentation.
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
287e687648
issue25931: document that socketserver.Forking* are unavailable on platforms
lacking os.fork().
10 years ago
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
583a1d6240
Document that CalledProcessError.returncode is the negative
signal number when the process died due to a signal.
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
Tommy Beadle
e9b8403a1f
[Issue 15476] Make "code object" its own entry in the index
10 years ago
Berker Peksag
8891dfe717
Issue #16192 : Fix copy and paste mistake noticed by Eryk Sun
10 years ago
Ethan Furman
cdc0879d3a
issue27186 -- initial docs, tests, and python version of os.fspath
10 years ago
Tommy Beadle
63b91e5403
Issue #24617 : Add comment for os.mkdir about mode quirks
10 years ago
Berker Peksag
d85a1e6b55
Issue #16192 : Clarify when c_int is an alias to c_long in ctypes documentation
10 years ago
R David Murray
f86959d883
#13784 : fix xml.sax.reader getColumn/LineNumber docs.
verification and patch by Emily Morehouse.
10 years ago
Benjamin Peterson
a49ccf2113
note that Py_VISIT handles NULL ( closes #27183 )
10 years ago
Berker Peksag
0a5120e457
Issue #23116 : Improve ask_ok() example in the Python tutorial
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