Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Update "Creating Virtual Environments" link in venv documentation | Berker Peksag | 2016-01-30 | 1 | -1/+1 |
| | |||||
* | Update output of venv -h | Berker Peksag | 2016-01-30 | 1 | -4/+5 |
| | | | | | * Update description of the --system-site-packages option * Show --copies option in the usage | ||||
* | Add a link to PEP 384 in stable.rst | Berker Peksag | 2016-01-28 | 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 #26034: Sync documentation of --clear with its behavior | Berker Peksag | 2016-01-28 | 1 | -3/+2 |
| | | | | Most of the docs has already been updated in c3c188a0325a. | ||||
* | Issue #26199: Fix broken link in unittest.mock-examples.rst | Berker Peksag | 2016-01-28 | 1 | -1/+1 |
| | | | | Patch by Raphael Das Gupta. | ||||
* | Issue #26220: Remove outdated comment about a question mark | Martin Panter | 2016-01-29 | 1 | -3/+0 |
| | |||||
* | 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 |
| | |||||
* | doc: i18n HTML templates | Victor Stinner | 2016-01-22 | 3 | -59/+59 |
| | | | | | | | Issue #25907: Use {% trans %} tags in HTML templates to ease the translation of the documentation. The tag comes from Jinja templating system, used by Sphinx. Patch written by Julien Palard. | ||||
* | 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. | ||||
* | issue25909 - Correct the documentation of PyMapping_Items, PyMapping_Keys and | Senthil Kumaran | 2016-01-21 | 1 | -7/+7 |
| | | | | | | PyMapping_Values in Include/abstract.h and Doc/c-api/mapping.rst. Patch contributed by Sonali Gupta. | ||||
* | Issue #26106: doc: Move text of licenses to parsed literal block | Victor Stinner | 2016-01-21 | 1 | -177/+183 |
| | | | | | | | This change helps to ignore text of PSF, BEOPEN.com and CNRI licenses when translating the documentation. Patch written by Julien Palard who is translating Python 3.5 doc to french. Text of other licenses already used preformatted format. | ||||
* | merge 3.4 (#26172) | Benjamin Peterson | 2016-01-21 | 1 | -1/+1 |
|\ | |||||
| * | remove script from epub (closes #26172) | Benjamin Peterson | 2016-01-21 | 1 | -1/+1 |
| | | |||||
* | | 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. | ||||
* | | Issue26017 - Suggest enclosing command args in double quotes when using ↵ | Senthil Kumaran | 2016-01-18 | 1 | -2/+4 |
| | | | | | | | | characters which get interpreted by shell. | ||||
* | | Issue26135 - In the tutorial section on modules, reference importlib.reload ↵ | Senthil Kumaran | 2016-01-17 | 1 | -1/+2 |
| | | | | | | | | instead of imp.reload. | ||||
* | | Issue #25089: Adds short documentation section for modifying an install. | Steve Dower | 2016-01-16 | 1 | -0/+17 |
| | | |||||
* | | 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 |
| | | |||||
* | | #26001: mention in the tutorial that files in binary mode expect bytes, not str. | Ezio Melotti | 2016-01-12 | 1 | -7/+8 |
| | | |||||
* | | #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 |
| | | |||||
* | | #25517: fix regex in the regex howto. Patch by Elena Oat. | Ezio Melotti | 2016-01-11 | 1 | -3/+4 |
| | | |||||
* | | #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 |
|\ \ | |/ | |||||
| * | Document asyncio.timeout() | Andrew Svetlov | 2016-01-11 | 1 | -46/+63 |
| | | |||||
* | | merge 3.4 (#26066) | Benjamin Peterson | 2016-01-10 | 1 | -11/+0 |
|\ \ | |/ | |||||
| * | delete old crypto prose (closes #26066) | Benjamin Peterson | 2016-01-10 | 1 | -11/+0 |
| | | |||||
* | | Issue23675 - A tiny clarification in the MRO glossary term. | Senthil Kumaran | 2016-01-10 | 1 | -1/+2 |
| | | |||||
* | | Issue #26029: Finish correction. | Terry Jan Reedy | 2016-01-09 | 1 | -1/+1 |
| | | |||||
* | | Issue #26029: Remove extraneous word. Patch by Upendra Kumar. | Terry Jan Reedy | 2016-01-09 | 1 | -1/+1 |
| | | |||||
* | | Issue20969 - Set the Epub Author and Epub Publisher in Python docs. | Senthil Kumaran | 2016-01-08 | 1 | -0/+5 |
| | | |||||
* | | merge 3.4 (#26046) | Benjamin Peterson | 2016-01-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | 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. | ||||
* | | merge from 3.4 | Senthil Kumaran | 2016-01-07 | 1 | -0/+5 |
|\ \ | |/ | | | | | Issue16544 - Add a link to an external documentation resource in ast module docs. | ||||
| * | Issue16544 - Add a link to an external documentation resource in ast module ↵ | Senthil Kumaran | 2016-01-07 | 1 | -0/+5 |
| | | | | | | | | docs. |