Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18277: Merge. | Richard Oudkerk | 2013-06-24 | 1 | -0/+17 |
|\ | |||||
| * | Issue #18277: Document quirks of multiprocessing queue. | Richard Oudkerk | 2013-06-24 | 1 | -0/+17 |
| | | |||||
* | | Merge #18179: reflow paragraphs. | R David Murray | 2013-06-23 | 1 | -24/+24 |
|\ \ | |/ | |||||
| * | #18179: reflow paragraphs. | R David Murray | 2013-06-23 | 1 | -24/+24 |
| | | |||||
* | | Merge #18179: document the local_hostname parameter. | R David Murray | 2013-06-23 | 1 | -4/+11 |
|\ \ | |/ | | | | | Original patch by Berker Peksag. | ||||
| * | #18179: document the local_hostname parameter. | R David Murray | 2013-06-23 | 1 | -4/+11 |
| | | | | | | | | Original patch by Berker Peksag. | ||||
* | | #11390: convert doctest CLI to argparse and add -o and -f options. | R David Murray | 2013-06-23 | 1 | -1/+7 |
| | | | | | | | | | | | | This provides a way to specify arbitrary doctest options when using the CLI interface to process test files, just as one can when calling testmod or testfile programmatically. | ||||
* | | Issue #11016: Add C implementation of the stat module as _stat | Christian Heimes | 2013-06-22 | 1 | -1/+50 |
| | | |||||
* | | merge for issue #18278 | Brett Cannon | 2013-06-21 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #18278: properly document how the loaders are called for FileFinder | Brett Cannon | 2013-06-21 | 1 | -0/+2 |
| | | |||||
* | | #12716: reorganize docs for os module a bit | Andrew Kuchling | 2013-06-21 | 1 | -76/+70 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Move the constants used by os.open() to after the description of os.open(), instead of putting them in their own section. * Move RTLD_* constants to "Miscellaneous System Information" section, and mention the sys functions they're used with. * Mention dir_fd parameter in os.open() text. * Typo fix ("are a supported by"). | ||||
* | | #13226: update references from ctypes/DLFCN modules to os module | Andrew Kuchling | 2013-06-21 | 1 | -4/+5 |
| | | |||||
* | | Merge from 3.3 | Andrew Kuchling | 2013-06-21 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #18218: use correct variable name for starting point | Andrew Kuchling | 2013-06-21 | 1 | -1/+1 |
| | | |||||
* | | Merge from 3.3 | Andrew Kuchling | 2013-06-21 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Closes #18267: use floor division in code example | Andrew Kuchling | 2013-06-21 | 1 | -2/+2 |
| | | |||||
* | | Merge from 3.3 | Andrew Kuchling | 2013-06-21 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Closes #18272: use 'builtins' for 3.3 instead of __builtin__ | Andrew Kuchling | 2013-06-21 | 2 | -2/+2 |
| | | |||||
* | | Issue #17177: Clarify some deprecations | Brett Cannon | 2013-06-19 | 1 | -3/+11 |
| | | |||||
* | | Grammar tweak | Brett Cannon | 2013-06-17 | 1 | -1/+1 |
| | | |||||
* | | Issue #18147: Add diagnostic functions to ssl.SSLContext(). | Christian Heimes | 2013-06-17 | 1 | -0/+24 |
| | | | | | | | | | | get_ca_list() lists all loaded CA certificates and cert_store_stats() returns amount of loaded X.509 certs, X.509 CA certs and CRLs. | ||||
* | | documentation suggesting something which doesn't exist | Brett Cannon | 2013-06-16 | 1 | -2/+1 |
| | | |||||
* | | Merge doc/argument name fix | Brett Cannon | 2013-06-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | merge | Brett Cannon | 2013-06-16 | 2 | -11/+35 |
| |\ | |||||
| * | | Fix a misnaming of a method and an argument | Brett Cannon | 2013-06-16 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #18076: Introduce imoportlib.util.decode_source(). | Brett Cannon | 2013-06-16 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | The helper function makes it easier to implement imoprtlib.abc.InspectLoader.get_source() by making that function require just the raw bytes for source code and handling all other details. | ||||
* | | | merge | Brett Cannon | 2013-06-16 | 2 | -11/+35 |
|\ \ \ | |||||
| * \ \ | Merge with 3.3 | Andrew Kuchling | 2013-06-16 | 2 | -11/+35 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Describe 'surrogateescape' in the documentation. | Andrew Kuchling | 2013-06-16 | 2 | -11/+35 |
| | |/ | | | | | | | | | | | | | | | | Also, improve some docstring descriptions of the 'errors' parameter. Closes #14015. | ||||
* | | | Issue #17177: The imp module is pending deprecation. | Brett Cannon | 2013-06-16 | 1 | -2/+5 |
|/ / | | | | | | | | | | | To make sure there is no issue with code that is both Python 2 and 3 compatible, there are no plans to remove the module any sooner than Python 4 (unless the community moves to Python 3 solidly before then). | ||||
* | | Issue #17907: touch up the code for imp.new_module(). | Brett Cannon | 2013-06-15 | 2 | -0/+36 |
| | | |||||
* | | Fix markup of the synopsis along with changing to state what is in the | Brett Cannon | 2013-06-15 | 1 | -2/+2 |
| | | | | | | | | module and not as a definition of what an enumeration is. | ||||
* | | Closes issue 17947. Adds PEP-0435 (Adding an Enum type to the Python ↵ | Ethan Furman | 2013-06-14 | 1 | -0/+542 |
| | | | | | | | | | | | | | | standard library). Missing files added. News entry added. | ||||
* | | Issue #17907: Document types.ModuleType's constructor and attributes, | Brett Cannon | 2013-06-14 | 2 | -2/+31 |
| | | | | | | | | allowing for documenting imp.new_module() as deprecated. | ||||
* | | Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the | Brett Cannon | 2013-06-14 | 2 | -0/+10 |
| | | | | | | | | deprecation of imp.get_magic(). | ||||
* | | merge | Brett Cannon | 2013-06-14 | 1 | -0/+13 |
|\ \ | |||||
| * | | Issue #18149: Add filecmp.clear_cache() to manually clear the filecmp cache. | Ned Deily | 2013-06-14 | 1 | -0/+13 |
| | | | | | | | | | | | | Patch by Mark Levitt | ||||
* | | | Issue #17222: Raise FileExistsError when py_compile.compile would | Brett Cannon | 2013-06-14 | 1 | -1/+10 |
|/ / | | | | | | | overwrite a symlink or non-regular file with a regular file. | ||||
* | | Issue #18193: Add importlib.reload(), documenting (but not | Brett Cannon | 2013-06-14 | 2 | -0/+70 |
| | | | | | | | | | | | | implementing in code) the deprecation of imp.reload(). Thanks to Berker Peksag for the patch. | ||||
* | | Closes issue 17947. Adds PEP-0435 (Enum, IntEnum) to the stdlib. | Ethan Furman | 2013-06-14 | 1 | -0/+1 |
| | | |||||
* | | Issue #15767: Touch up ModuleNotFoundError usage by import. | Brett Cannon | 2013-06-13 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Forgot to raise ModuleNotFoundError when None is found in sys.modules. This led to introducing the C function PyErr_SetImportErrorSubclass() to make setting ModuleNotFoundError easier. Also updated the reference docs to mention ModuleNotFoundError appropriately. Updated the docs for ModuleNotFoundError to mention the None in sys.modules case. Lastly, it was noticed that PyErr_SetImportError() was not setting an exception when returning None in one case. That issue is now fixed. | ||||
* | | Issue #15767: Introduce ModuleNotFoundError, a subclass of | Brett Cannon | 2013-06-12 | 1 | -2/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ImportError. The exception is raised by import when a module could not be found. Technically this is defined as no viable loader could be found for the specified module. This includes ``from ... import`` statements so that the module usage is consistent for all situations where import couldn't find what was requested. This should allow for the common idiom of:: try: import something except ImportError: pass to be updated to using ModuleNotFoundError and not accidentally mask ImportError messages that should propagate (e.g. issues with a loader). This work was driven by the fact that the ``from ... import`` statement needed to be able to tell the difference between an ImportError that simply couldn't find a module (and thus silence the exception so that ceval can raise it) and an ImportError that represented an actual problem. | ||||
* | | Issue #18187: merge from 3.3 | Ned Deily | 2013-06-11 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #18187: Fix broken link in venv documentation. Patch by Berker Peksag. | Ned Deily | 2013-06-11 | 1 | -1/+1 |
| | | |||||
* | | Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. | Christian Heimes | 2013-06-09 | 1 | -0/+23 |
| | | |||||
* | | removed accidental new line | Christian Heimes | 2013-06-09 | 1 | -2/+1 |
| | | |||||
* | | Issue #18143: Implement ssl.get_default_verify_paths() in order to debug | Christian Heimes | 2013-06-09 | 1 | -1/+19 |
| | | | | | | | | the default locations for cafile and capath. | ||||
* | | #18126: merge with 3.3. | Ezio Melotti | 2013-06-08 | 1 | -4/+2 |
|\ \ | |/ | |||||
| * | #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev. | Ezio Melotti | 2013-06-08 | 1 | -4/+2 |
| | | |||||
* | | moved the single-dispatch generic function definitions to the glossary | Łukasz Langa | 2013-06-07 | 1 | -6/+2 |
| | |