summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27311: Fix ZipFile.writestr data argument name.Martin Panter2016-06-151-2/+2
| | | | Patch by John Hagen.
* Delete outdated paragraph about OptimizedUnicode againBerker Peksag2016-06-141-4/+0
| | | | | | | | | sqlite3.OptimizedUnicode is an alias for str in Python 3 and its behavior is already tested in CheckOptimizedUnicode in Lib/sqlite3/test/factory.py. sqlite3.OptimizedUnicode was undocumented in 0fc10a33eb4c and probably added back with the result of a bad merge.
* Issue #16182: set_pre_input_hook() may not exist; document, and update testMartin Panter2016-06-141-2/+5
|
* Issue #27306: Fix typo in tarfile documentationBerker Peksag2016-06-131-7/+7
| | | | Patch by Gareth Rees.
* Issue #15657: Delete incorrect statement from PyMethodDef documentationBerker Peksag2016-06-121-3/+2
|
* Issue #27188: Fix various sqlite3 documentation errorsBerker Peksag2016-06-121-18/+19
| | | | | | | | | | | * 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.
* Use exc role for ValueError in multiprocessing.rstBerker Peksag2016-06-121-1/+1
|
* Issue #27221: Delete an outdated paragraph about pickle support of ProcessBerker Peksag2016-06-121-6/+1
| | | | Initial patch by Jelle Zijlstra.
* Fix typos and English grammar in documentation and code commentMartin Panter2016-06-121-1/+1
|
* Issue #24136: Document generalized unpacking, PEP 448Martin Panter2016-06-124-30/+64
| | | | Based on patches by Konstantin Molchanov and Neil Girdhar.
* Fix typo and silence a Sphinx warning in Doc/glossary.rstBerker Peksag2016-06-111-1/+1
|
* Silence 'make suspicious' warningsBerker Peksag2016-06-111-3/+3
|
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-11221-134/+531
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #27280: Fix typo in IPv6Network documentationBerker Peksag2016-06-101-1/+1
| | | | Patch by Arthur Carcano.
* Issue #24617: Add comment for os.mkdir about mode quirksTommy Beadle2016-06-021-4/+10
|
* Issue #8491: Add link to Gnu Readline configuration documentationMartin Panter2016-06-101-0/+7
|
* [Issue 15476] Make "code object" its own entry in the indexTommy Beadle2016-06-024-11/+8
|
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-094-7/+63
|
* asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-082-20/+0
| | | | | | | 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
* asyncio: Update whatsnew/3.5.2Yury Selivanov2016-06-081-2/+7
|
* Issue #27136: Update asyncio docsYury Selivanov2016-06-081-23/+24
|
* Issue #23275: Backport target list assignment documentation fixesMartin Panter2016-06-081-15/+14
|
* Issue #21593: Clarify that re.search() returns the first matchBerker Peksag2016-06-081-2/+2
|
* Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-081-1/+3
| | | | Patch by Susumu Koshiba.
* os.urandom() doesn't block on Linux anymoreVictor Stinner2016-06-071-3/+10
| | | | | | 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.
* Issue #26014: Update 3.x packaging documentation:Ned Deily2016-06-064-3/+12
| | | | | | | - "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)
* Issue #24291: Avoid WSGIRequestHandler doing partial writesMartin Panter2016-06-051-0/+3
| | | | | | | | | 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.
* issue27202 - Fix the mistake in changesets 70af472451cb (3.5) and ↵Senthil Kumaran2016-06-052-5/+34
| | | | | | | | | 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.
* Issue #17888: Add a note about contributing to Python docsBerker Peksag2016-06-051-3/+7
| | | | Patch by Terry Chia and Laura Rupprecht.
* issue27202 - Exclude 2.x release notes from python3 make doctests.Senthil Kumaran2016-06-051-2/+3
| | | | Patch contributed by Jelle Zijlstra.
* Issue27203 - Fix doctests Doc/faq/programming.rst.Senthil Kumaran2016-06-051-8/+20
| | | | Patch contributed by Jelle Zijlstra.
* Issue #19234: Documents socket.fileno() returns -1 on failureKushal Das2016-06-041-3/+2
|
* Issue 27216: Fix typo (noticed by Alex Chan).Ned Deily2016-06-041-1/+1
|
* Fix typos in code comment and documentationMartin Panter2016-06-043-3/+3
|
* #22797: clarify when URLErrors are raised by urlopen.R David Murray2016-06-031-1/+1
|
* issue27113 - Document "check_same_thread" parameter in sqlite3.connect api.Senthil Kumaran2016-06-031-0/+5
| | | | Patch contributed by Dave Sawyer.
* issue8519 - Reference termios and ioctl manual pages in the library ↵Senthil Kumaran2016-06-032-5/+7
| | | | documentation.
* Document that CalledProcessError.returncode is the negativeGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-1/+2
| | | | signal number when the process died due to a signal.
* #26829: Clarify that namespace is copied to a new __dict__ in instance creation.R David Murray2016-06-032-2/+8
| | | | Patch by Emily Morehouse.
* Issue #16192: Fix copy and paste mistake noticed by Eryk SunBerker Peksag2016-06-021-3/+3
|
* #13784: fix xml.sax.reader getColumn/LineNumber docs.R David Murray2016-06-021-2/+2
| | | | verification and patch by Emily Morehouse.
* Issue #16192: Clarify when c_int is an alias to c_long in ctypes documentationBerker Peksag2016-06-021-5/+4
|
* note that Py_VISIT handles NULL (closes #27183)Benjamin Peterson2016-06-021-3/+4
|
* Issue #23116: Improve ask_ok() example in the Python tutorialBerker Peksag2016-06-021-3/+3
|
* Issue #12243: Remove redundant availability notes from getpass docsBerker Peksag2016-06-021-3/+1
| | | | Patch by Bryce Verdier.
* Fix link in programming FAQ.Berker Peksag2016-06-011-1/+1
| | | | The example actually uses the sort method of list object.
* Issue #27174: Update IPython URL in tutorialBerker Peksag2016-06-011-1/+1
|
* Fix typo in Python tutorialBerker Peksag2016-06-011-1/+1
|
* Issue #25570: Add example of customizing User-Agent via add_header()Martin Panter2016-06-011-1/+6
|
* Fix typoZachary Ware2016-06-011-1/+1
|