Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #22832: Tweaked parameter names for fcntl module to better match | Serhiy Storchaka | 2015-03-20 | 1 | -32/+32 |
| | | | | | official POSIX documentation. Updated the documenttion for Python 3. Patch by Alex Shkop. | ||||
* | Merge: #11726: Make linecache docs reflect that all files are treated the same. | R David Murray | 2015-03-20 | 1 | -2/+2 |
|\ | |||||
| * | #11726: Make linecache docs reflect that all files are treated the same. | R David Murray | 2015-03-20 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Being able to read non-python text files is not a purpose of linecache, but it does work and people use it. This changeset adjusts the language to make it clear that Python files are not treated uniquely, but does not go so far as to say reading non-python files is explicitly supported. | ||||
* | | Issue #23681: The -b option now affects comparisons of bytes with int. | Serhiy Storchaka | 2015-03-20 | 2 | -1/+6 |
| | | |||||
* | | Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried | Victor Stinner | 2015-03-20 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | | | when interrupted by a signal not in the *sigset* parameter, if the signal handler does not raise an exception. signal.sigtimedwait() recomputes the timeout with a monotonic clock when it is retried. Remove test_signal.test_sigwaitinfo_interrupted() because sigwaitinfo() doesn't raise InterruptedError anymore if it is interrupted by a signal not in its sigset parameter. | ||||
* | | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and | Serhiy Storchaka | 2015-03-20 | 4 | -24/+59 |
| | | | | | | | | | | codecs, that accepted only read-only bytes-like object now accept writable bytes-like object too. | ||||
* | | Issue #23632: Memoryviews now allow tuple indexing (including for ↵ | Antoine Pitrou | 2015-03-19 | 1 | -16/+22 |
| | | | | | | | | multi-dimensional memoryviews). | ||||
* | | Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now | Victor Stinner | 2015-03-19 | 1 | -0/+5 |
| | | | | | | | | | | | | | | retried with the recomputed delay, except if the signal handler raises an exception (PEP 475). Modify also test_signal to use a monotonic clock instead of the system clock. | ||||
* | | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.4 (linecache doc) | Victor Stinner | 2015-03-18 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #11726: Fix linecache example in the doc | Victor Stinner | 2015-03-18 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Use a Python source file (linecache.__file__) instead of /etc/passwd. Modify also linecache docstrings to clarify the linecache is written to cache Python source files, not any text files. | ||||
* | | Merge 3.4 (linecache doc) | Victor Stinner | 2015-03-18 | 1 | -2/+5 |
|\ \ | |/ | |||||
| * | Issue #11726: clarify linecache doc: linecache is written to cache Python | Victor Stinner | 2015-03-18 | 1 | -2/+5 |
| | | | | | | | | source files, even if "it works" with other text files encoded to UTF-8. | ||||
* | | Issue #12155: Fix queue doc example to join threads | Victor Stinner | 2015-03-18 | 1 | -13/+23 |
| | | | | | | | | Use None as a sentinel to stop a worker. | ||||
* | | Merge 3.4 (marshal doc) | Victor Stinner | 2015-03-18 | 1 | -6/+15 |
|\ \ | |/ | |||||
| * | Issue #19428: Document that PyMarshal_ReadLongFromFile() and | Victor Stinner | 2015-03-18 | 1 | -6/+15 |
| | | | | | | | | PyMarshal_ReadShortFromFile() can fail. | ||||
* | | Issue #2211: Updated the implementation of the http.cookies.Morsel class. | Serhiy Storchaka | 2015-03-18 | 2 | -0/+18 |
| | | | | | | | | | | | | | | | | | | Setting attributes key, value and coded_value directly now is deprecated. update() and setdefault() now transform and check keys. Comparing for equality now takes into account attributes key, value and coded_value. copy() now returns a Morsel, not a dict. repr() now contains all attributes. Optimized checking keys and quoting values. Added new tests. Original patch by Demian Brecht. | ||||
* | | Issue #18983: Allow selection of output units in timeit. | Robert Collins | 2015-03-17 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | This allows manual selection of a specific unit such as usecs rather than the use of a heuristic. This is intended to aid machine processing of timeit output. Patch by Serhiy Storchaka. | ||||
* | | Revert changeset d927047b1d8eb87738676980a24930d053ba2150 | Victor Stinner | 2015-03-17 | 1 | -4/+0 |
| | | | | | | | | Sorry, it was a mistake, the patch is still under review: issue #23646. | ||||
* | | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
|\ \ | |/ | | | | | Patch by Thomas Kluyver. | ||||
| * | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
| | | | | | | | | Patch by Thomas Kluyver. | ||||
* | | merge 3.4 (#23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 |
|\ \ | |/ | |||||
| * | versionchanged for rc4 removal (closes #23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 |
| | | |||||
* | | Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element | Eli Bendersky | 2015-03-15 | 1 | -2/+4 |
|\ \ | |/ | | | | | | | | | | | | | | | Merge 3.4 The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. | ||||
| * | Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element | Eli Bendersky | 2015-03-15 | 1 | -2/+4 |
| | | | | | | | | | | | | | | The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. | ||||
* | | Issue #2052: Add charset parameter to HtmlDiff.make_file(). | Berker Peksag | 2015-03-14 | 2 | -1/+14 |
| | | |||||
* | | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | __getslice__ certainly won't appear in the output | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.4 | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
|\ \ | |/ | |||||
| * | Make the case to only support Python 2.7 when supporting 2/3 simultaneously | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
| | | |||||
* | | Strip trailing whitespace | Brett Cannon | 2015-03-13 | 1 | -7/+8 |
| | | |||||
* | | Issue #23491: Implement PEP 441: Improving Python Zip Application Support | Brett Cannon | 2015-03-13 | 3 | -4/+275 |
| | | | | | | | | Thanks to Paul Moore for the PEP and implementation. | ||||
* | | test | Victor Stinner | 2015-03-12 | 1 | -0/+4 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | use the meth role for ZipFile.open | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
|\ \ | |/ | | | | | Patch by Lars Buitinck. | ||||
| * | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
| | | | | | | | | Patch by Lars Buitinck. | ||||
* | | Issue #22154: Add an example to show context management protocol support of ↵ | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
|\ \ | |/ | | | | | | | | | ZipFile.open(). Patch by Mike Short. | ||||
| * | Issue #22154: Add an example to show context management protocol support of ↵ | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
| | | | | | | | | | | | | ZipFile.open(). Patch by Mike Short. | ||||
* | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 2 | -7/+7 |
|\ \ | |/ | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 2 | -7/+7 |
| | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | | Add versionadded directives for the matmul operator. | Berker Peksag | 2015-03-12 | 1 | -0/+4 |
| | | |||||
* | | Issue #23651: Fix typo in allow_abbrev docs. | Berker Peksag | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | Noticed by Nathan West. | ||||
* | | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() | Victor Stinner | 2015-03-12 | 2 | -0/+32 |
| | | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu. | ||||
* | | Close issue23467: add %r compatibility to bytes and bytearray | Ethan Furman | 2015-03-11 | 1 | -1/+7 |
| | | |||||
* | | Merge 3.4 (asyncio doc) | Victor Stinner | 2015-03-10 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | asyncio doc: changes on the Queue API missed Python 3.4.3 release | Victor Stinner | 2015-03-10 | 1 | -4/+4 |
| | | |||||
* | | Issue #23432: Remove duplicate content from SystemExit docs. | Berker Peksag | 2015-03-10 | 1 | -13/+13 |
|\ \ | |/ | | | | | Also, document SystemExit.code attribute explicitly. |