Terry Jan Reedy
dffd42f130
Whitespace
10 years ago
Terry Jan Reedy
d9792a0f18
Issue #27163 : Add idlelib/IDLE entry to What's New in 3.6.
10 years ago
Serhiy Storchaka
64204de04c
Issue #27095 : Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Patch by Demur Rumed.
10 years ago
Berker Peksag
8f95e65e5d
Issue #15657 : Delete incorrect statement from PyMethodDef documentation
10 years ago
Berker Peksag
c415440faa
Issue #27188 : Fix various sqlite3 documentation errors
* Connection.execute* methods don't create intermediate cursor objects
* Fix description of seq_of_parameters parameter
* Clarify that Warning is sqlite3.Warning
* sql_script parameter of Cursor.executescript() doesn't accept bytes
* Add missing tests
* Fix various markup errors
Initial patch by Dave Sawyer.
10 years ago
Berker Peksag
00eaa8a53b
Use exc role for ValueError in multiprocessing.rst
10 years ago
Berker Peksag
0b19e1e72c
Issue #27221 : Delete an outdated paragraph about pickle support of Process
Initial patch by Jelle Zijlstra.
10 years ago
Martin Panter
98e9051577
Add grammatical article to “an ASCII letter”
10 years ago
Martin Panter
70c502aacf
Fix typos and English grammar in documentation and code comment
10 years ago
Martin Panter
ed74e243c6
Issue #24136 : Adjust f-strings doc for interable unpacking
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
Gregory P. Smith
7bfb415c8d
Clarify that md5 is in the algorithms_guaranteed list despite what
some upstream vendors may do to their odd "FIPS compliant" builds.
issue15468.
10 years ago
Gregory P. Smith
8907dcd3ff
issue15468 - use sha256 instead of md5 or sha1 in the examples.
document that md5 may be missing in the rare case someone is using a
"FIPS compliant" build. I've only ever heard of Redhat creating one
of those - CPython itself offers no such build mode out of the box.
10 years ago
Serhiy Storchaka
6a7506a77f
Issue #27140 : Added BUILD_CONST_KEY_MAP opcode.
10 years ago
Berker Peksag
af51140fa0
Fix typo and silence a Sphinx warning in Doc/glossary.rst
10 years ago
Berker Peksag
326196047f
Silence 'make suspicious' warnings
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
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