summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Remove reference to stuff which is already obsolete in 2.x.Antoine Pitrou2010-12-121-82/+0
|
* SET_LINENO was removed in 2.3Antoine Pitrou2010-12-121-5/+0
|
* Logging documentation - further update.Vinay Sajip2010-12-121-51/+101
|
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+5
|
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+8
|
* Logging documentation update.Vinay Sajip2010-12-121-144/+420
|
* remove (un)transform methodsBenjamin Peterson2010-12-122-48/+2
|
* Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-101-8/+9
|
* Minor documentation tweak.Vinay Sajip2010-12-101-2/+2
|
* Fix "seperate".Georg Brandl2010-12-091-1/+1
|
* Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP charactersVictor Stinner2010-12-081-2/+2
| | | | Fix the doc and add tests.
* Make the example a little more interesting and useful.Raymond Hettinger2010-12-071-0/+3
|
* Add example for the entry for argparseRaymond Hettinger2010-12-071-0/+1
|
* Note improvements to the docs.Raymond Hettinger2010-12-062-4/+6
|
* Mention itertools.accumulate().Raymond Hettinger2010-12-041-0/+1
|
* Doc nit.Raymond Hettinger2010-12-041-1/+1
|
* Fix markup errors.Georg Brandl2010-12-043-4/+4
|
* clarify the docs and new warning message.Gregory P. Smith2010-12-041-1/+1
|
* Issue #10601: sys.displayhook uses 'backslashreplace' error handler onVictor Stinner2010-12-041-2/+28
| | | | UnicodeEncodeError.
* Add display/undisplay pdb commands.Georg Brandl2010-12-041-0/+16
|
* #7245: Add a SIGINT handler on continue in pdb that allows to break a ↵Georg Brandl2010-12-041-1/+11
| | | | program again by pressing Ctrl-C.
* configparser: fixed inconsistency where in SafeConfigParser option valuesŁukasz Langa2010-12-041-4/+18
| | | | | were ensured to be strings but section names and option keys were not. Behaviour unchanged for RawConfigParser and ConfigParser.
* Add the "interact" pdb command from pdb++.Georg Brandl2010-12-041-0/+8
|
* #7905: Actually respect the keyencoding parameter to shelve.Shelf.Georg Brandl2010-12-041-4/+11
|
* Add an "optimize" parameter to compile() to control the optimization level, ↵Georg Brandl2010-12-044-33/+72
| | | | and provide an interface to it in py_compile, compileall and PyZipFile.
* #6045: provide at least get() and setdefault() for all dbm modules.Georg Brandl2010-12-041-2/+7
|
* issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument isGregory P. Smith2010-12-041-1/+6
| | | | | | | | | | | | not passed to subprocess.Popen as the default value will be changing in a future Python to the safer and more often desired value of True. DeprecationWarnings that show up in a lot of existing code are controversial and have caused pain in the past. I'd like to leave this on for 3.2 beta1 and see how things go. We can remove the warning if it is deemed too noisy during any betas. (case study: the md5 and sha module DeprecationWarnings are loathed around the world as those modules were never going to be removed in 2.x and 2to3 has a fixer for code that uses them)
* Fix typo.Georg Brandl2010-12-041-1/+1
|
* Issue 10620: Specifying test modules by path instead of module name to ↵Michael Foord2010-12-041-0/+10
| | | | 'python -m unittest'
* Fix indentation.Georg Brandl2010-12-031-2/+1
|
* Add an "advanced topics" section to the io doc.Antoine Pitrou2010-12-031-13/+65
|
* (no commit message)Terry Reedy2010-12-031-1/+11
|
* Fix punctuation.Georg Brandl2010-12-031-2/+2
|
* Issue 10499: Modular interpolation in configparserŁukasz Langa2010-12-032-225/+260
|
* Markup consistency fixes.Georg Brandl2010-12-031-47/+40
|
* Issue 2690: Add support for slicing and negative indices to range objects ↵Nick Coghlan2010-12-031-1/+26
| | | | | | (includes precalculation and storage of the range length). Refer to the tracker issue for the language moratorium implications of this change
* logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests.Vinay Sajip2010-12-031-0/+64
|
* Add a line with the actual changes.Georg Brandl2010-12-031-0/+1
|
* Improve Pydoc interactive browsing (#2001). Patch by Ron Adam.Nick Coghlan2010-12-031-4/+14
| | | | | | | | | | | | | | * A -b option to start an enhanced browsing session. * Allow -b and -p options to be used together. * Specifying port 0 will pick an arbitrary unused socket port. * A new browse() function to start the new server and browser. * Show Python version information in the header. * A *Get* field which takes the same input as the help() function. * A *Search* field which replaces the Tkinter search box. * Links to *Module Index*, *Topics*, and *Keywords*. * Improved source file viewing. * An HTMLDoc.filelink() method. * The -g option and the gui() and serve() functions are deprecated.
* Add missing versionchanged, correct 'throw' wording to 'raise'.R. David Murray2010-12-031-2/+4
|
* #1486713: Add a tolerant mode to HTMLParser.R. David Murray2010-12-031-2/+11
| | | | | | | | | | | | The motivation for adding this option is that the the functionality it provides used to be provided by sgmllib in Python2, and was used by, for example, BeautifulSoup. Without this option, the Python3 version of BeautifulSoup and the many programs that use it are crippled. The original patch was by 'kxroberto'. I modified it heavily but kept his heuristics and test. I also added additional heuristics to fix #975556, #1046092, and part of #6191. This patch should be completely backward compatible: the behavior with the default strict=True is unchanged.
* Fix #10554. Added context manager support to Popen objects.Brian Curtin2010-12-031-0/+10
| | | | | | Added a few common Popen uses to the tests like we've done for a few other instances of adding context managers. Eventually the entire test suite could be converted to use the context manager format.
* Update the itertools.accumulate() docs.Raymond Hettinger2010-12-031-5/+4
|
* Simplify the signature for itertools.accumulate() to match numpy. Handle ↵Raymond Hettinger2010-12-031-6/+8
| | | | one item iterable the same way as min()/max().
* Issue 7911: unittest.TestCase.longMessage defaults to True for improved ↵Michael Foord2010-12-031-2/+2
| | | | failure messages by default
* Re-add accidentally removed line.Georg Brandl2010-12-021-0/+1
|
* #8989: add 'domain' keyword to make_msgid.R. David Murray2010-12-021-2/+8
| | | | Patch by Adrian von Bidder.
* Fix #9333. Expose os.symlink on Windows only when usable.Brian Curtin2010-12-021-1/+9
| | | | | | | | | | | | | | | | In order to create symlinks on Windows, SeCreateSymbolicLinkPrivilege is an account privilege that is required to be held by the user. Not only must the privilege be enabled for the account, the activated privileges for the currently running application must be adjusted to enable the requested privilege. Rather than exposing an additional function to be called prior to the user's first os.symlink call, we handle the AdjustTokenPrivileges Windows API call internally and only expose os.symlink when the privilege escalation was successful. Due to the change of only exposing os.symlink when it's available, we can go back to the original test skipping methods of checking via `hasattr`.
* #7475: add (un)transform method to bytes/bytearray and str, add back codecs ↵Georg Brandl2010-12-022-0/+84
| | | | that can be used with them from Python 2.
* Fix-up documentation of makedirs().Georg Brandl2010-12-021-5/+5
|