summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.5 (asyncio)Yury Selivanov2016-06-081-16/+0
|\
| * asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-081-16/+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
* | Merge 3.5 (asyncio, issue #27136)Yury Selivanov2016-06-081-23/+24
|\ \ | |/
| * Issue #27136: Update asyncio docsYury Selivanov2016-06-081-23/+24
| |
* | Issue #21593: Merge from 3.5Berker Peksag2016-06-081-2/+2
|\ \ | |/
| * Issue #21593: Clarify that re.search() returns the first matchBerker Peksag2016-06-081-2/+2
| |
* | Issue #25738: Merge HTTP server from 3.5Martin Panter2016-06-081-1/+3
|\ \ | |/
| * Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-081-1/+3
| | | | | | | | Patch by Susumu Koshiba.
* | Merge 3.5 (os.urandom)Victor Stinner2016-06-071-3/+10
|\ \ | |/
| * 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: merge from 3.5Ned Deily2016-06-061-1/+1
|\ \ | |/
| * Issue #26014: Update 3.x packaging documentation:Ned Deily2016-06-061-1/+1
| | | | | | | | | | | | | | - "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: Merge wsgi partial write fix from 3.5Martin Panter2016-06-051-0/+3
|\ \ | |/
| * 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.
* | Fix typos in datetime documentation.Berker Peksag2016-06-051-2/+2
| |
* | Issue #19611: handle implicit parameters in inspect.signatureNick Coghlan2016-06-041-0/+10
| | | | | | | | | | | | | | | | 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.
* | issue27186: add open/io.open; patch by Jelle ZijlstraEthan Furman2016-06-041-5/+5
| |
* | Issue #19234: Merge from 3.5Kushal Das2016-06-041-3/+2
|\ \ | |/
| * 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
|\ \ | |/
| * Issue 27216: Fix typo (noticed by Alex Chan).Ned Deily2016-06-041-1/+1
| |
* | Merge typo fixes from 3.5Martin Panter2016-06-043-3/+3
|\ \ | |/
| * 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
| |
* | psuedo merge: #22797: clarify when URLErrors are raised by urlopen.R David Murray2016-06-031-1/+1
| | | | | | | | | | I'm not sure how my previous merge commit got screwed up, hopefully this one will do the right thing.
* | [merge from 3.5] - issue27113 - Document "check_same_thread" parameter in ↵Senthil Kumaran2016-06-031-0/+5
|\ \ | |/ | | | | | | | | sqlite3.connect api. Patch contributed by Dave Sawyer.
| * issue27113 - Document "check_same_thread" parameter in sqlite3.connect api.Senthil Kumaran2016-06-031-0/+5
| | | | | | | | Patch contributed by Dave Sawyer.
* | [merge from 3.5] - issue8519 - Reference termios and ioctl manual pages in ↵Senthil Kumaran2016-06-032-5/+7
|\ \ | |/ | | | | the library documentation.
| * issue8519 - Reference termios and ioctl manual pages in the library ↵Senthil Kumaran2016-06-032-5/+7
| | | | | | | | documentation.
* | issue25931: document that socketserver.Forking* are unavailable on platformsGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-0/+4
| | | | | | | | lacking os.fork().
* | merge 3.5Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-1/+2
|\ \ | |/
| * 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.
* | Merge: #26829: Clarify that namespace is copied to a new __dict__ in ↵R David Murray2016-06-031-2/+3
|\ \ | |/ | | | | instance creation.
| * #26829: Clarify that namespace is copied to a new __dict__ in instance creation.R David Murray2016-06-031-2/+3
| | | | | | | | Patch by Emily Morehouse.
* | Issue #16192: Merge from 3.5Berker Peksag2016-06-021-3/+3
|\ \ | |/
| * Issue #16192: Fix copy and paste mistake noticed by Eryk SunBerker Peksag2016-06-021-3/+3
| |
* | issue27186 -- initial docs, tests, and python version of os.fspathEthan Furman2016-06-021-0/+9
| |
* | Merge: #13784: fix xml.sax.reader getColumn/LineNumber docs.R David Murray2016-06-021-2/+2
|\ \ | |/
| * #13784: fix xml.sax.reader getColumn/LineNumber docs.R David Murray2016-06-021-2/+2
| | | | | | | | verification and patch by Emily Morehouse.
* | Issue #16192: Merge from 3.5Berker Peksag2016-06-021-5/+4
|\ \ | |/
| * Issue #16192: Clarify when c_int is an alias to c_long in ctypes documentationBerker Peksag2016-06-021-5/+4
| |
* | Issue #21271: Adds new keyword only parameters in reset_mock callKushal Das2016-06-021-2/+10
| | | | | | | | | | We now have two keyword only parameters in the reset_mock function to selectively reset the return_value or the side_effects, or both.
* | Issue #12243: Merge from 3.5Berker Peksag2016-06-021-3/+1
|\ \ | |/
| * Issue #12243: Remove redundant availability notes from getpass docsBerker Peksag2016-06-021-3/+1
| | | | | | | | Patch by Bryce Verdier.
* | Issue #25570: Merge add_header() example from 3.5Martin Panter2016-06-011-1/+6
|\ \ | |/
| * Issue #25570: Add example of customizing User-Agent via add_header()Martin Panter2016-06-011-1/+6
| |
* | Merge with 3.5Zachary Ware2016-06-011-1/+1
|\ \ | |/
| * Fix typoZachary Ware2016-06-011-1/+1
| |
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-303-4/+4
|\ \ | |/
| * Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-303-4/+4
| |