Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #25687: clarify that errors in tearDown increase the total number of ↵ | Ezio Melotti | 2016-03-13 | 1 | -4/+6 |
| | | | | reported errors. Initial patch by HyeSoo Park. | ||||
* | Issue #26548: Minor fix to awkward wording in docs | Raymond Hettinger | 2016-03-13 | 1 | -2/+2 |
| | |||||
* | Issue #23606: Adds note to ctypes documentation regarding cdll.msvcrt. | Steve Dower | 2016-03-12 | 1 | -0/+6 |
| | |||||
* | Issue #26542: Fix markup of code example in difflib documentation | Berker Peksag | 2016-03-11 | 1 | -5/+3 |
| | | | | Patch by Dmitry Shachnev. | ||||
* | Issue #15068: Got rid of excessive buffering in the fileinput module. | Serhiy Storchaka | 2016-03-08 | 1 | -1/+7 |
| | | | | The bufsize parameter is no longer used. | ||||
* | Issue #21034: Remove outdated paragraph from venv documentation | Berker Peksag | 2016-03-07 | 1 | -5/+0 |
| | | | | | Since Python 3.4, there is no need to install pip and setuptools into a venv manually. | ||||
* | Document another recipe for itertools: all_equal(). Inspired by David Beazley. | Raymond Hettinger | 2016-03-07 | 1 | -0/+5 |
| | |||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 35 | -127/+124 |
| | | | | to SilentGhost for the patch. | ||||
* | Closes #26442: fix copy-paste. | Georg Brandl | 2016-02-26 | 1 | -1/+1 |
| | |||||
* | Closes #26444: typo fixes. | Georg Brandl | 2016-02-26 | 1 | -7/+7 |
| | |||||
* | Issue #26390: Fix and test pbkdf2_hmac() parameter names | Martin Panter | 2016-02-22 | 1 | -6/+7 |
| | | | | Based on patch by Daan Bakker. | ||||
* | Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. | Georg Brandl | 2016-02-25 | 7 | -15/+16 |
| | |||||
* | Issue #22088: Clarify base-64 alphabets and which characters are discarded | Martin Panter | 2016-02-23 | 1 | -13/+16 |
| | | | | | | | | | | * 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 Also update the doc strings to clarify data types, based on revision 92760d2edc9e, correct the exception raised by b16decode(), and correct the parameter name for the base-85 functions. | ||||
* | 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 | -4/+4 |
| | | | | | | | * http.client.HTTP (does not exist in Python 3) → HTTPConnection * Server (deprecated) → ServerProxy * Transport.send_request() grew a new “debug” parameter in Python 3 (revision a528f7f8f97a) | ||||
* | Issue #26401: Fix compile() documentation | Berker Peksag | 2016-02-21 | 1 | -1/+5 |
| | | | | | | | After 25032ec29315, compile() will raise a ValueError if source contains null bytes. Patch by SilentGhost. | ||||
* | List what classes from importlib.machinery don't work with ↵ | Brett Cannon | 2016-02-21 | 1 | -1/+2 |
| | | | | importlib.util.LazyLoader | ||||
* | Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage | Martin Panter | 2016-02-19 | 1 | -10/+17 |
| | | | | | | | | * The Windows-specific binary notice was probably a Python 2 thing * Make it more obvious gettarinfo() is based on stat(), and that non-ordinary files may need special care * The file name must be text; 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 | -6/+6 |
| | |||||
* | Issue #15608: Improve socketserver module documentation | Martin Panter | 2016-02-19 | 1 | -154/+202 |
| | | | | | | | | | | | * 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 * Remove version 2.6 not relevant for Python 3 documentation | ||||
* | Issue #16915: Clarify that mode parameter of socket.makefile() does not accept | Berker Peksag | 2016-02-18 | 1 | -1/+2 |
| | | | | the same values as open(). | ||||
* | Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart. | Ned Deily | 2016-02-16 | 1 | -1/+1 |
| | |||||
* | Hopefully clarify the difference between Optional[t] and an optional argument. | Guido van Rossum | 2016-02-10 | 1 | -0/+7 |
| | |||||
* | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar | Martin Panter | 2016-02-10 | 7 | -26/+26 |
| | | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear. | ||||
* | Issues #26310, #26311: Fix typos in the documentation and code comments | 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 | 1 | -1/+1 |
| | | | | not have a math vocabulary. | ||||
* | Issue #25179: Preparatory cleanup of existing docs on string formatting | Martin Panter | 2016-02-08 | 6 | -24/+27 |
| | | | | | | | | | * Various sections were pointing to the section on the string.Formatter class, 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; see Issue #19729 for instance | ||||
* | Fix typo. | Zachary Ware | 2016-02-02 | 1 | -1/+1 |
| | | | | Reported by Jon Tetlak on docs@ | ||||
* | Issue #26244: Clarify default zlib compression level in documentation | Martin Panter | 2016-02-03 | 1 | -3/+4 |
| | | | | Based on patch by Aviv Palivoda. | ||||
* | Issue #26194: Inserting into a full deque to raise an IndexError | Raymond Hettinger | 2016-02-02 | 1 | -2/+2 |
| | |||||
* | Enhance os.scandir() doc | Victor Stinner | 2016-01-31 | 1 | -35/+38 |
| | | | | | | | | | | | | | | Issue #26248, patch written by Ben Hoyt: 1) Clarify that the return values of is_dir()/is_file()/etc are cached separately for follow_symlinks True and False. 2) Be more specific about when the functions require a system call, and how it relates to caching and follow_symlinks. 3) DRY up common stuff between is_dir and is_file by saying "Caching, system calls made, and exceptions raised are as per is_dir" in is_file. 4) Tweak to the first paragraph of docs for is_dir/is_file to simplify: assume the follow_symlinks=True default, then note the follow_symlinks=False non-default case after. | ||||
* | Issue #26242: Fix another one in importlib.rst | Berker Peksag | 2016-01-30 | 1 | -1/+1 |
| | |||||
* | Fix a markup error in socket.rst | Berker Peksag | 2016-01-30 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | Issue #26199: Fix broken link in unittest.mock-examples.rst | Berker Peksag | 2016-01-28 | 1 | -1/+1 |
| | | | | Patch by Raphael Das Gupta. | ||||
* | Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen | Raymond Hettinger | 2016-01-27 | 1 | -0/+3 |
| | |||||
* | Fix a typo in a code example | Brett Cannon | 2016-01-22 | 1 | -1/+1 |
| | |||||
* | minor clarification on Zipfile 'x' mode - exclusive creation of a file. | Senthil Kumaran | 2016-01-22 | 1 | -2/+2 |
| | |||||
* | Issue #18620: Improve Pool examples in multiprocessing documentation | Berker Peksag | 2016-01-21 | 1 | -11/+26 |
| | | | | | | | | | | 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/+17 |
| | | | | multiprocessing docs. | ||||
* | Issue #5626: Remove misleading comment from socket.gethostname() documentation | Berker Peksag | 2016-01-20 | 1 | -5/+0 |
| | | | | | | A machine can have more than one IP addresses so socket.gethostbyname(socket.gethostname()) probably won't return the correct one. | ||||
* | Issue #26157: Fix typos in asyncio-eventloop.rst | Berker Peksag | 2016-01-20 | 1 | -4/+4 |
| | | | | Initial patch by Carlo Beccarini. | ||||
* | issue23962 - Reference the correct TimeoutError in concurrent.futures ↵ | Senthil Kumaran | 2016-01-19 | 1 | -16/+27 |
| | | | | | | documentation. Patch contributed by Ryder Lewis. | ||||
* | Issue26035 - Correct the argument names used in the docs of the traceback ↵ | Senthil Kumaran | 2016-01-16 | 1 | -34/+35 |
| | | | | | | module. Make it consistent with module args. Patch contributed by Upendra Kumar. | ||||
* | Issue #26127: Fix links in tokenize documentation; patch by Silent Ghost | Martin Panter | 2016-01-16 | 1 | -7/+7 |
| | |||||
* | #19006: fix wording in unittest docs. | Ezio Melotti | 2016-01-12 | 1 | -3/+4 |
| | |||||
* | Issue #25486: Drop "removed in 3.6" wording from inspect.getargspec docs. | Yury Selivanov | 2016-01-12 | 1 | -2/+1 |
| | |||||
* | #25991: fix readline example to limit history size. Patch by Daniel Dye. | Ezio Melotti | 2016-01-11 | 1 | -0/+4 |
| | |||||
* | Fix versionadded to use 3.5.1 only for 3.5 branch | Andrew Svetlov | 2016-01-11 | 1 | -1/+1 |
| | |||||
* | merge 3.4 | Andrew Svetlov | 2016-01-11 | 1 | -48/+64 |
|\ |