Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17202: Add .bat to .hgeol to force them to CRLF. | Zachary Ware | 2015-04-13 | 1 | -124/+124 |
| | | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why. | ||||
* | Issue #23932: Update the tutorial section on function annotations. | Zachary Ware | 2015-04-13 | 1 | -11/+10 |
| | | | | Patch by Juti Noppornpitak. | ||||
* | #17380: Document tp_init return value in extending docs. | R David Murray | 2015-04-13 | 1 | -1/+2 |
| | | | | Patch by James Powell. | ||||
* | Issue #12955: Change the urlopen() examples to use context managers where ↵ | Berker Peksag | 2015-04-12 | 5 | -28/+38 |
| | | | | | | appropriate. Patch by Martin Panter. | ||||
* | Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵ | Antoine Pitrou | 2015-04-11 | 1 | -2/+2 |
| | | | | objects are accepted in the PurePath constructor | ||||
* | Issue #23912: Fix code formatting in datamodel.rst. | Berker Peksag | 2015-04-11 | 1 | -3/+3 |
| | | | | Patch by James Edwards. | ||||
* | use imperative | Benjamin Peterson | 2015-04-11 | 1 | -7/+7 |
| | |||||
* | Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵ | Berker Peksag | 2015-04-10 | 1 | -0/+4 |
| | | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor. | ||||
* | Fix typo in telnet docs (reported by Keith Briggs) | Tim Golden | 2015-04-08 | 1 | -1/+1 |
| | |||||
* | actually ssl3 is just completely broken | Benjamin Peterson | 2015-04-08 | 1 | -7/+7 |
| | |||||
* | Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵ | Berker Peksag | 2015-04-08 | 1 | -8/+16 |
| | | | | | | available. Patch by Davin Potts. | ||||
* | Added missing right bracket (reported by Daryl Klakouski) | Tim Golden | 2015-04-06 | 1 | -1/+1 |
| | |||||
* | Issue #23219: Update asyncio.wait_for() documentation | Victor Stinner | 2015-04-03 | 1 | -0/+5 |
| | | | | the wait is cancelled, the future *fut* is now also cancelled. | ||||
* | document what exactly str.splitlines() splits on (closes #12855) | Benjamin Peterson | 2015-04-01 | 1 | -4/+36 |
| | | | | Patch by Martin Panter. | ||||
* | Issue #23729: Improve docs for ElementTree namespace parsing | Raymond Hettinger | 2015-03-31 | 1 | -8/+10 |
| | |||||
* | #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. | Ezio Melotti | 2015-03-24 | 1 | -37/+28 |
| | |||||
* | Issue 23729: Document ElementTree namespace handling and fix an omission in ↵ | Raymond Hettinger | 2015-03-22 | 1 | -0/+68 |
| | | | | the XPATH predicate table. | ||||
* | #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 1 | -13/+23 |
| | | | | | | | | Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me. | ||||
* | clarify behavior of shutil.move when destination exists (closes #22933) | Benjamin Peterson | 2015-03-22 | 1 | -6/+3 |
| | | | | Patch by Mike Short. | ||||
* | #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 #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. | ||||
* | 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 #19428: Document that PyMarshal_ReadLongFromFile() and | Victor Stinner | 2015-03-18 | 1 | -6/+15 |
| | | | | PyMarshal_ReadShortFromFile() can fail. | ||||
* | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
| | | | | Patch by Thomas Kluyver. | ||||
* | 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 |
| | | | | | | | 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. | ||||
* | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
| | |||||
* | __getslice__ certainly won't appear in the output | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | |||||
* | Make the case to only support Python 2.7 when supporting 2/3 simultaneously | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
| | |||||
* | 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 #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. | ||||
* | 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. | ||||
* | Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last example | Victor Stinner | 2015-03-10 | 1 | -2/+3 |
| | |||||
* | Issue #23617: Correct plurals typo noted by Kentrell Johnson. | Ned Deily | 2015-03-09 | 1 | -1/+1 |
| | |||||
* | indicate correct version (closes #23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 |
| | |||||
* | replace Amazon links in the documentation (closes #23579) | Benjamin Peterson | 2015-03-07 | 2 | -4/+4 |
| | | | | Patch by Sayan Chowdhury. | ||||
* | expose X509_V_FLAG_TRUSTED_FIRST | Benjamin Peterson | 2015-03-05 | 1 | -3/+11 |
| | |||||
* | wrap everything at 80 chars | Benjamin Peterson | 2015-03-02 | 1 | -98/+97 |
| | |||||
* | link to the correct dis method or function (closes #23561) | Benjamin Peterson | 2015-03-02 | 1 | -3/+3 |
| | |||||
* | Issue #20521: Change ``TOS`` to TOS in dis documentation. | Berker Peksag | 2015-03-02 | 1 | -4/+4 |
| | | | | | | TOS is an abbreviation of top-of-stack. Patch by Sven Berkvens-Matthijsse. | ||||
* | Fix the clarification as to why division cannot be ported automatically | Brett Cannon | 2015-02-27 | 1 | -2/+3 |
| | |||||
* | Fix copy/paste error in bytes.isupper() doc. | Zachary Ware | 2015-02-27 | 1 | -2/+2 |
| | | | | Reported by Jon Colburn on docs@. | ||||
* | asyncio doc: lock classes are not thread safe | Victor Stinner | 2015-02-26 | 1 | -3/+11 |
| | |||||
* | Issue #23511: Port email-simple.py to Python 3. | Berker Peksag | 2015-02-25 | 4 | -10/+10 |
| | | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon. | ||||
* | asyncio: add a note about (non) thread safety in each class | Victor Stinner | 2015-02-25 | 6 | -0/+22 |
| | |||||
* | asyncio doc: begin with warnings on asyncio traps | Victor Stinner | 2015-02-25 | 1 | -0/+5 |
| | |||||
* | asyncio doc: move queues to a new page | Victor Stinner | 2015-02-25 | 3 | -166/+174 |
| |