summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22619: Added negative limit support in the traceback module.Serhiy Storchaka2015-05-031-19/+33
| | | | Based on patch by Dmitry Kazakov.
* Updates documentation for installing Python on Windows.Steve Dower2015-05-032-24/+22
|
* Merge: #24108: Update fnmatch.translate example to show correct output.R David Murray2015-05-021-1/+1
|\
| * #24108: Update fnmatch.translate example to show correct output.R David Murray2015-05-021-1/+1
| | | | | | | | Patch by Merlijn van Deen.
* | Merge: #24081: Remove obsolete caveat from import docs.R David Murray2015-05-022-12/+0
|\ \ | |/
| * #24081: Remove obsolete caveat from import docs.R David Murray2015-05-022-12/+0
| | | | | | | | | | | | | | Per Eric Snow's research, this changed in Python 2.4 in changeset 331e60d8ce, but these docs were not updated. Patch by Peter Viktorin.
* | Fixed a typo.Serhiy Storchaka2015-05-021-1/+1
|\ \ | |/
| * Fixed a typo.Serhiy Storchaka2015-05-021-1/+1
| |
* | Closes #24060: Merged documentation update from 3.4.Vinay Sajip2015-05-021-1/+3
|\ \ | |/
| * Issue #24060: Made logging.Formatter documentation a little clearer.Vinay Sajip2015-05-021-1/+3
| |
* | remove deleted methodBenjamin Peterson2015-04-281-4/+0
| |
* | Issue #24062: Fix os.stat links. Patch by July Tikhonov.Berker Peksag2015-04-271-2/+2
|\ \ | |/
| * Issue #24062: Fix os.stat links. Patch by July Tikhonov.Berker Peksag2015-04-271-2/+2
| |
* | Issue #23356: Simplify convert_arg_line_to_args example.Berker Peksag2015-04-261-4/+1
|\ \ | |/ | | | | Patch by py.user.
| * Issue #23356: Simplify convert_arg_line_to_args example.Berker Peksag2015-04-261-4/+1
| | | | | | | | Patch by py.user.
* | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.Gregory P. Smith2015-04-252-0/+40
| | | | | | | | | | | | | | Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari.
* | merge 3.4 (#24057)Benjamin Peterson2015-04-251-2/+2
|\ \ | |/
| * fix relative link (closes #24057)Benjamin Peterson2015-04-251-2/+2
| |
* | merge 3.4 (#24049)Benjamin Peterson2015-04-241-4/+0
|\ \ | |/
| * remove dead *-import checking code (closes #24049)Benjamin Peterson2015-04-241-4/+0
| |
* | Issue #24029: Document the name binding behavior for submodule imports.Barry Warsaw2015-04-221-0/+35
|\ \ | |/
| * Issue #24029: Document the name binding behavior for submodule imports.Barry Warsaw2015-04-221-0/+35
| |
* | Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor ↵Berker Peksag2015-04-221-2/+2
| | | | | | | | | | | | doesn't exist. Patch by Claudiu Popa.
* | Merge from 3.4Andrew Kuchling2015-04-211-0/+2
|\ \ | |/
| * #15183: clarify timeit documentation to say that setup statement isn't timedAndrew Kuchling2015-04-211-0/+2
| |
* | #17445: difflib: add diff_bytes(), to compare bytes rather than strGreg Ward2015-04-212-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some applications (e.g. traditional Unix diff, version control systems) neither know nor care about the encodings of the files they are comparing. They are textual, but to the diff utility they are just bytes. This worked fine under Python 2, because all of the hardcoded strings in difflib.py are ASCII, so could safely be combined with old-style u'' strings. But it stopped working in 3.x. The solution is to use surrogate escapes for a lossless bytes->str->bytes roundtrip. That means {unified,context}_diff() can continue to just handle strings without worrying about bytes. Callers who have to deal with bytes will need to change to using diff_bytes(). Use case: Mercurial's test runner uses difflib to compare current hg output with known good output. But Mercurial's output is just bytes, since it can contain: * file contents (arbitrary unknown encoding) * filenames (arbitrary unknown encoding) * usernames and commit messages (usually UTF-8, but not guaranteed because old versions of Mercurial did not enforce it) * user messages (locale encoding) Since the output of any given hg command can include text in multiple encodings, it is hopeless to try to treat it as decodable Unicode text. It's just bytes, all the way down. This is an elaboration of a patch by Terry Reedy.
* | merge 3.4 (#23989)Benjamin Peterson2015-04-202-0/+10
|\ \ | |/
| * recommend requests library (closes #23989)Benjamin Peterson2015-04-202-0/+10
| | | | | | | | Patch from Van Lindberg
| * fix grammarBenjamin Peterson2015-04-201-1/+1
| |
* | Regenerated pydoc-topics and fixed bad/suspicious doc markup for Python 3.5.0a4.Larry Hastings2015-04-195-5/+5
| |
* | Mark TarInfo.frombuf() and TarInfo.fromtarfile() as classmethods.Berker Peksag2015-04-191-3/+3
|\ \ | |/
| * Mark TarInfo.frombuf() and TarInfo.fromtarfile() as classmethods.Berker Peksag2015-04-191-3/+3
| |
* | Issue #15566: Document encoding and errors parameters of TarInfo.frombuf().Berker Peksag2015-04-191-1/+1
|\ \ | |/ | | | | Patch by Andy Holst.
| * Issue #15566: Document encoding and errors parameters of TarInfo.frombuf().Berker Peksag2015-04-191-1/+1
| | | | | | | | Patch by Andy Holst.
* | Closes #23536: Clarified scope of fileConfig()'s API.Vinay Sajip2015-04-181-0/+12
|\ \ | |/
| * Issue #23536: Clarified scope of fileConfig()'s API.Vinay Sajip2015-04-181-0/+12
| |
* | Fix two typos in AbstractBasicAuthHandler documentation.Berker Peksag2015-04-171-2/+3
| |
* | #16914: reflow paragraph and add missing versionchanged.R David Murray2015-04-161-3/+6
| |
* | #16914: add timestamps to smtplib debugging output via new debuglevel 2.R David Murray2015-04-162-2/+12
| | | | | | | | Patch by Gavin Chappell and Maciej Szulik.
* | #7159: generalize urllib prior auth support.R David Murray2015-04-162-17/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | This fix is a superset of the functionality introduced by the issue #19494 enhancement, and supersedes that fix. Instead of a new handler, we have a new password manager that tracks whether we should send the auth for a given uri. This allows us to say "always send", satisfying #19494, or track that we've succeeded in auth and send the creds right away on every *subsequent* request. The support for using the password manager is added to AbstractBasicAuth, which means the proxy handler also now can handle prior auth if passed the new password manager. Patch by Akshit Khurana, docs mostly by me.
* | #18128: use standard +NNNN timezone format in POT-Creation-Date header.R David Murray2015-04-161-0/+4
| | | | | | | | Patch by Michael McFadden, with a few small style tweaks.
* | Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon YaariSteve Dower2015-04-152-0/+12
| |
* | Issue 19933: Provide default argument for ndigits in round. Patch by ↵Steve Dower2015-04-151-2/+2
| | | | | | | | Vajrasky Kok.
* | Issue 23193: Add numeric_owner to tarfile.TarFile.extract() and ↵Eric V. Smith2015-04-152-11/+30
| | | | | | | | tarfile.TarFile.extractall().
* | properly wrapBenjamin Peterson2015-04-151-2/+2
| |
* | Add a subprocess.run() function than returns a CalledProcess instance for aGregory P. Smith2015-04-142-119/+178
| | | | | | | | | | more consistent API than the existing call* functions. (enhancement from issue 23342)
* | issue9859: add the missing versionadded tag to the documentation.Gregory P. Smith2015-04-141-0/+2
| |
* | Merge: #23957: fix typo.R David Murray2015-04-141-1/+1
|\ \ | |/
| * #23957: fix typo.R David Murray2015-04-141-1/+1
| |
* | issue9859: Document test.support.detect_api_mismatch() and simplify its test.Gregory P. Smith2015-04-141-0/+9
| |