summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Added rationale for defaulting to 1 in the functional API.Ethan Furman2013-06-291-0/+4
|
* Added example to enum docs show access to name and value attributes of enum ↵Ethan Furman2013-06-281-2/+10
| | | | members.
* #18111: Add What's New entry for max/min default.R David Murray2013-06-281-0/+3
|
* Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() whereCharles-François Natali2013-06-281-1/+1
| | | | applicable.
* Merge #18311: fix typo.R David Murray2013-06-261-1/+1
|\
| * #18311: fix typo.R David Murray2013-06-261-1/+1
| |
* | Issue 18111: Add a default argument to min() and max()Raymond Hettinger2013-06-251-14/+20
| |
* | Issue #18164: merge from 3.3Ned Deily2013-06-241-1/+3
|\ \ | |/
| * Issue #18164: Clarify the embedding docs regarding link options.Ned Deily2013-06-241-1/+3
| |
* | Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Fix typo.Richard Oudkerk2013-06-241-1/+1
| |
* | Merge.Richard Oudkerk2013-06-241-2/+3
|\ \ | |/
| * Clarify note and fix typo.Richard Oudkerk2013-06-241-2/+3
| |
* | Issue #15818: Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Issue #15818: Typo in docs.Richard Oudkerk2013-06-241-1/+1
| |
* | Issue #18277: Merge.Richard Oudkerk2013-06-241-0/+17
|\ \ | |/
| * Issue #18277: Document quirks of multiprocessing queue.Richard Oudkerk2013-06-241-0/+17
| |
* | Merge #18179: reflow paragraphs.R David Murray2013-06-231-24/+24
|\ \ | |/
| * #18179: reflow paragraphs.R David Murray2013-06-231-24/+24
| |
* | Merge #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+11
|\ \ | |/ | | | | Original patch by Berker Peksag.
| * #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+11
| | | | | | | | Original patch by Berker Peksag.
* | #11390: convert doctest CLI to argparse and add -o and -f options.R David Murray2013-06-232-3/+16
| | | | | | | | | | | | 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 _statChristian Heimes2013-06-222-2/+56
| |
* | ... also TLSv1.1 and TLSv1.2Christian Heimes2013-06-221-0/+3
| |
* | Add my SSL module patches to whatsnew 3.4Christian Heimes2013-06-221-0/+12
| |
* | merge for issue #18278Brett Cannon2013-06-211-0/+2
|\ \ | |/
| * Issue #18278: properly document how the loaders are called for FileFinderBrett Cannon2013-06-211-0/+2
| |
* | #12716: reorganize docs for os module a bitAndrew Kuchling2013-06-211-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 moduleAndrew Kuchling2013-06-211-4/+5
| |
* | Merge from 3.3Andrew Kuchling2013-06-211-1/+1
|\ \ | |/
| * Closes #18218: use correct variable name for starting pointAndrew Kuchling2013-06-211-1/+1
| |
* | Merge from 3.3Andrew Kuchling2013-06-211-2/+2
|\ \ | |/
| * Closes #18267: use floor division in code exampleAndrew Kuchling2013-06-211-2/+2
| |
* | Merge from 3.3Andrew Kuchling2013-06-212-2/+2
|\ \ | |/
| * Closes #18272: use 'builtins' for 3.3 instead of __builtin__Andrew Kuchling2013-06-212-2/+2
| |
* | whatsnew/3.4: mention functools.singledispatch, PEP 443Victor Stinner2013-06-201-0/+6
| |
* | whatsnew/3.4: mention the new enum module, PEP 435Victor Stinner2013-06-201-2/+2
| |
* | Merge from 3.3Andrew Kuchling2013-06-201-95/+162
|\ \ | |/
| * #4153: update Unicode howto for Python 3.3Andrew Kuchling2013-06-201-95/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * state that python3 source encoding is UTF-8, and give examples * mention surrogateescape in the 'tips and tricks' section, and backslashreplace in the "Python's Unicode Support" section. * Describe Unicode support provided by the re module. * link to Nick Coghlan's and Ned Batchelder's notes/presentations. * default filesystem encoding is now UTF-8, not ascii. * Describe StreamRecoder class. * update acks section * remove usage of "I think", "I'm not going to", etc. * various edits * remove revision history and original outline
* | Merge: Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
|\ \ | |/
| * Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
| | | | | | | | | | The exception is the import related questions at the end, which need to be rewritten anyway.
* | Issue #17177: Clarify some deprecationsBrett Cannon2013-06-191-3/+11
| |
* | Grammar tweakBrett Cannon2013-06-171-1/+1
| |
* | Issue #18147: Add diagnostic functions to ssl.SSLContext().Christian Heimes2013-06-171-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 existBrett Cannon2013-06-161-2/+1
| |
* | Merge doc/argument name fixBrett Cannon2013-06-161-1/+1
|\ \ | |/
| * mergeBrett Cannon2013-06-162-11/+35
| |\
| * | Fix a misnaming of a method and an argumentBrett Cannon2013-06-161-1/+1
| | |
* | | Issue #18076: Introduce imoportlib.util.decode_source().Brett Cannon2013-06-161-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.
* | | importlib.abc.SourceLoader.get_source() was re-raising SyntaxError andBrett Cannon2013-06-161-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | UnicodeDecodeError as ImportError. That was over-reaching the point of raising ImportError in get_source() (which is to signal the source code was not found when it should have). Conflating the two exceptions with ImportError could lead to masking errors with the source which should be known outside of whether there was an error simply getting the source to begin with.