Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | issue26484 - fix the broken table in the doc about len(). | Gregory P. Smith | 2016-03-05 | 1 | -1/+1 |
| | |||||
* | Issue 13573: Document that csv.writer uses str() for floats instead of repr(). | Raymond Hettinger | 2016-02-28 | 1 | -0/+1 |
| | |||||
* | Issue #22088: Clarify base-64 alphabets and which characters are discarded | Martin Panter | 2016-02-23 | 1 | -6/+9 |
| | | | | | | * There are only two base-64 alphabets defined by the RFCs, not three * Due to the internal translation, plus (+) and slash (/) are never discarded * standard_ and urlsafe_b64decode() discard characters as well | ||||
* | Issue #26261: Clarify NamedTemporaryFile name attribute vs file.name | Martin Panter | 2016-02-22 | 1 | -1/+2 |
| | |||||
* | Fix errors in XML-RPC client example code | Martin Panter | 2016-02-22 | 1 | -3/+3 |
| | | | | | * httplib.HTTP (deprecated and does not work) → HTTPConnection * Server (deprecated) → ServerProxy | ||||
* | Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage | Martin Panter | 2016-02-19 | 1 | -6/+15 |
| | | | | | | | * Make it more obvious gettarinfo() is based on stat(), and that non-ordinary files may need special care * Filename taken from fileobj.name; suggest dummy arcname as a workaround * Indicate TarInfo may be used directly, not just via gettarinfo() | ||||
* | Closes #20169: fix inner links random doc. | Georg Brandl | 2016-02-19 | 1 | -5/+6 |
| | |||||
* | Issue #15608: Improve socketserver module documentation | Martin Panter | 2016-02-19 | 1 | -145/+195 |
| | | | | | | | | | | * Add headings for each concrete and mix-in class and list methods and attributes under them * Fix class and method cross references * Changed RequestHandler to BaseRequestHandler and added class heading * Pull out Stream/DatagramRequestHandler definitions * Reordered the request handler setup(), handle(), finish() methods * Document constructor parameters for the server classes | ||||
* | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar | Martin Panter | 2016-02-10 | 3 | -20/+20 |
| | | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear. | ||||
* | Issues #26310, #26311: Fix typos in the documentation | Martin Panter | 2016-02-10 | 2 | -3/+3 |
| | |||||
* | Clarify "cardinality of" as "number of elements in" as many readers do | Gregory P. Smith | 2016-02-08 | 2 | -2/+3 |
| | | | | not have a math vocabulary. | ||||
* | Issue #25179: Preparatory cleanup of existing docs on string formatting | Martin Panter | 2016-02-08 | 3 | -15/+18 |
| | | | | | | | | | * There was a link pointing to the section on the string.Formatter class (and multiple links in Python 3), when the section on the common format string syntax is probably more appropriate * Fix references to various format() functions and methods * Nested replacement fields may contain conversions and format specifiers, and this is tested in Python 3; see Issue #19729 for instance | ||||
* | Issue #26244: Clarify default zlib compression level in documentation | Martin Panter | 2016-02-03 | 1 | -2/+4 |
| | | | | Based on patch by Aviv Palivoda. | ||||
* | Issue #19023: Document ctypes array and pointer classes | Martin Panter | 2016-01-29 | 1 | -4/+54 |
| | | | | Also add some more tests. Based on patch by Sye van der Veen. | ||||
* | Fix typo in test.rst | Berker Peksag | 2016-01-25 | 1 | -1/+1 |
| | | | | Reported by Mike Scalora on docs@p.o. | ||||
* | Issue #18620: Improve Pool examples in multiprocessing documentation | Berker Peksag | 2016-01-21 | 1 | -7/+32 |
| | | | | | | | | | | A single call to Pool.apply_async() will create only one process. To use all of the pool's processes, it should be invoked multiple times: with Pool(processes=4) as pool: results = [pool.apply_async(func, ()) for i in range(4)] Patch by Davin Potts. | ||||
* | issue25982 - Add a class definition for managers.Namespace in the ↵ | Senthil Kumaran | 2016-01-20 | 1 | -15/+16 |
| | | | | multiprocessing docs. | ||||
* | Issue26035 - Correct the argument names used in the docs of the traceback ↵ | Senthil Kumaran | 2016-01-16 | 1 | -48/+51 |
| | | | | module. Make it consistent with module args. | ||||
* | Issue #26127: Fix links in tokenize documentation | Martin Panter | 2016-01-16 | 1 | -5/+5 |
| | |||||
* | Issue26097 - Fix the TextTestRunner documentation, mention all the arguments ↵ | Senthil Kumaran | 2016-01-15 | 1 | -2/+3 |
| | | | | | | of the class. Patch contributed by Nicolas Évrard. | ||||
* | #19006: fix wording in unittest docs. | Ezio Melotti | 2016-01-12 | 1 | -2/+3 |
| | |||||
* | #25991: fix readline example to limit history size. Patch by Daniel Dye. | Ezio Melotti | 2016-01-11 | 1 | -0/+3 |
| | |||||
* | delete old crypto prose (closes #26066) | Benjamin Peterson | 2016-01-10 | 1 | -10/+0 |
| | |||||
* | fix typo in unittest docs (closes #26046) | Benjamin Peterson | 2016-01-08 | 1 | -1/+1 |
| | | | | Patch from Upendra Kumar. | ||||
* | Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵ | Berker Peksag | 2016-01-07 | 1 | -2/+4 |
| | | | | | | has no effect Patch by Davin Potts and Camilla Montonen. | ||||
* | Backport documentation improvement. | Senthil Kumaran | 2016-01-04 | 1 | -4/+3 |
| | | | | | | Issue24898 - Improve str.find documentation. Simplify str.find explaination as per Georg Brandl's suggestion. | ||||
* | Backport doc improvements for Issue21221 - Explain the usage of tm_isdst | Senthil Kumaran | 2016-01-03 | 1 | -3/+6 |
| | | | | | | attribute of mktime, with valid values and meaning. Patch contributed by Andrew Scheller. | ||||
* | Fix grammar. | Zachary Ware | 2016-01-01 | 1 | -1/+1 |
| | | | | Reported by Anatoly Techtonik on docs@ | ||||
* | Issue #22088: Port base64 character ignoring doc and test from 857d9fe60169 | Martin Panter | 2015-12-14 | 1 | -3/+3 |
| | |||||
* | Issue #20837: Base-64 alphabet clarification from revision 1853679c6f71 | Martin Panter | 2015-12-14 | 1 | -1/+2 |
| | |||||
* | #25495: Clarify b2a_base64 documentation vis 57 bytes. | R David Murray | 2015-12-13 | 1 | -3/+5 |
| | |||||
* | Issue #25508: Clarify documentation on LogRecord args attribute. | Vinay Sajip | 2015-11-24 | 1 | -1/+3 |
| | |||||
* | Issue #23200: Document that max_length=0 is not supported | Martin Panter | 2015-11-18 | 1 | -1/+1 |
| | |||||
* | Issue #20468: Remove incorrect information about maxrss and page size | Martin Panter | 2015-11-17 | 1 | -4/+1 |
| | | | | Extract of patch by Ronald Oussoren. | ||||
* | Issue #25615: Document unsorted behaviour of glob; patch by Dave Jones | Martin Panter | 2015-11-16 | 1 | -7/+7 |
| | |||||
* | Issue #25017: Document that htmllib is superseded by module HTMLParser | Martin Panter | 2015-11-14 | 1 | -0/+2 |
| | |||||
* | Issue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock() | Victor Stinner | 2015-11-13 | 1 | -0/+4 |
| | |||||
* | Document the BUILD_SET opcode. | Zachary Ware | 2015-11-12 | 1 | -0/+7 |
| | | | | Reported by Hrvoje Abraham on docs@. | ||||
* | Rewrite re.VERBOSE section. | Zachary Ware | 2015-11-12 | 1 | -7/+9 |
| | | | | | | | It now has slightly better rationale and a less awkward wording in the explanation. Inspired by a report of a neither/or conflict by 'animalize' on docs@. | ||||
* | Issue #25523: Backported a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 3 | -3/+3 |
| | |||||
* | Issue #25519: Mark difflib.ndiff as a functions where not already. | Terry Jan Reedy | 2015-10-30 | 1 | -2/+2 |
| | |||||
* | Issue #25432: Explain isinstance behaviour when type is a tuple. | Terry Jan Reedy | 2015-10-28 | 1 | -5/+4 |
| | |||||
* | Issue #25461: Rephrase os.walk() doc | Victor Stinner | 2015-10-23 | 1 | -3/+3 |
| | | | | Patch written by Bernt Røskar Brenna. | ||||
* | Issue #24782: Finish converting the Configure Extension dialog into a new | Terry Jan Reedy | 2015-10-14 | 1 | -11/+10 |
| | | | | tab in the IDLE Preferences dialog. Code patch by Mark Roseman. | ||||
* | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 19 | -19/+19 |
| | |||||
* | Issue #22413: Document newline effect on StringIO initializer and getvalue | Martin Panter | 2015-10-10 | 1 | -5/+12 |
| | | | | Also add to comment in the C code. | ||||
* | Issue #25286: Dictionary views are not sequences | Martin Panter | 2015-10-07 | 1 | -1/+1 |
| | | | | | Also change glossary heading from "view" to "dictionary view". Patch by Akira Li. | ||||
* | Issue #16701: Document += and *= for mutable sequences | Martin Panter | 2015-10-03 | 1 | -2/+11 |
| | |||||
* | Issue #25224: README.txt is now an idlelib index for IDLE developers and | Terry Jan Reedy | 2015-10-03 | 1 | -1/+1 |
| | | | | | curious users. The previous user content is now in the IDLE doc and is redundant. IDLE now means 'Integrated Development and Learning Environment'. | ||||
* | Issue #24028: Add subsection about Idle calltips. | Terry Jan Reedy | 2015-09-29 | 1 | -3/+29 |
| |