summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #9606: Updated documentation for Filter objects.Vinay Sajip2010-08-191-0/+7
|
* PYTHONFSENCODING is not available on Windows or Mac OS XVictor Stinner2010-08-192-1/+7
|
* Create os.fsdecode(): decode from the filesystem encoding with surrogateescapeVictor Stinner2010-08-192-8/+24
| | | | | | | | error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable
* what's new 3.2: use :mod:Victor Stinner2010-08-181-4/+4
|
* Fix typoÉric Araujo2010-08-182-3/+3
|
* #7647: add ST_RDONLY, ST_NOSUID constants to os module.Andrew M. Kuchling2010-08-182-0/+12
| | | | (Also fix a name ordering in the ACKS file.)
* Fix indentation levelÉric Araujo2010-08-181-2/+2
|
* Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-182-3/+21
| | | | | | filesystem encoding. initfsencoding() displays also a better error message if get_codeset() failed.
* Add versionadded tag to PyModule_GetFilenameObject() docVictor Stinner2010-08-181-0/+2
|
* Issue #9425: Create PyModule_GetFilenameObject() functionVictor Stinner2010-08-171-2/+13
| | | | | | ... to get the filename as a unicode object, instead of a byte string. Function needed to support unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new function.
* Replace :func: by :cfunc:Victor Stinner2010-08-174-12/+12
| | | | To get links to the C functions
* Fix exampleÉric Araujo2010-08-171-1/+1
|
* Add versionadded tagsAntoine Pitrou2010-08-171-0/+4
|
* Modernize gzip examplesAntoine Pitrou2010-08-171-12/+8
|
* Issue #3488: Provide convenient shorthand functions `gzip.compress`Antoine Pitrou2010-08-171-0/+16
| | | | and `gzip.decompress`. Original patch by Anand B. Pillai.
* Minor rewording to docs for the lru_cache decoratorRaymond Hettinger2010-08-171-3/+3
|
* wrapBenjamin Peterson2010-08-171-2/+2
|
* fix issue #8807: adds a context parameter to POP3_SSL class.Giampaolo Rodolà2010-08-172-2/+15
|
* fix issue #8866: parameters passed to socket.getaddrinfo can now be ↵Giampaolo Rodolà2010-08-172-5/+12
| | | | specified as single keyword arguments.
* Consistency check for versionadded/changed directives.Georg Brandl2010-08-1733-114/+129
|
* Markup nits.Georg Brandl2010-08-171-3/+4
|
* Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the ↵Nick Coghlan2010-08-171-2/+3
| | | | module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory
* Issue 9147: Add dis.code_info()Nick Coghlan2010-08-171-0/+12
|
* Document and test the resolution of issue 3445 (tolerate missing attributes ↵Nick Coghlan2010-08-171-0/+23
| | | | in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper)
* Remove some lingering remnants of the short-lived functools.lfu_cacheNick Coghlan2010-08-171-27/+0
|
* added versionaddedBenjamin Peterson2010-08-171-0/+4
|
* add support for abstract class and static methods #5867Benjamin Peterson2010-08-171-0/+26
|
* Add versionadded tag to PySys_FormatStd*() functions docVictor Stinner2010-08-161-0/+4
|
* Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()Victor Stinner2010-08-161-1/+12
| | | | | Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and sys.stderr.
* Replace readfp() with read_file() in configparser documentation.Florent Xicluna2010-08-151-3/+3
|
* Clarify whatsnew entry for short float repr: roundtripping is not a new ↵Mark Dickinson2010-08-151-4/+6
| | | | feature in 2.7.
* Remove the lfu_cache. Add more tests.Raymond Hettinger2010-08-151-28/+15
|
* Fix typoÉric Araujo2010-08-141-1/+1
|
* Remove bad merge (from svnmerge r82301)Florent Xicluna2010-08-141-4/+0
|
* Typo fix.Georg Brandl2010-08-141-2/+2
|
* Wording fix.Georg Brandl2010-08-141-5/+5
|
* Oops, fix typoÉric Araujo2010-08-141-1/+1
|
* Fix reference (follow-up to #9061)Éric Araujo2010-08-141-1/+1
|
* Manually merge r83995: Fix version{added,changed} and spacing in NEWSÉric Araujo2010-08-141-2/+2
|
* Use a marker in generated MANIFEST files, don't touch files without it. ↵Éric Araujo2010-08-141-5/+8
| | | | Fixes #8688.
* Issue #9542: Create PyUnicode_FSDecoder() functionVictor Stinner2010-08-131-4/+16
| | | | | | | | | | | | It's a ParseTuple converter: decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is. * Don't specify surrogateescape error handler in the comments nor the documentation, but PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_EncodeFSDefault() because these functions use strict error handler for the mbcs encoding (on Windows). * Remove PyUnicode_FSConverter() comment in unicodeobject.c to avoid inconsistency with unicodeobject.h.
* Re-apply r83871.Antoine Pitrou2010-08-131-7/+0
|
* Fix copy-paste error.Georg Brandl2010-08-131-1/+1
|
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-3/+10
| | | | | | | Similar to PyErr_WarnEx() but use PyUnicode_FromFormatV() to format the warning message. Strip also some trailing spaces.
* Issue #9425: PyFile_FromFd() ignores the name argumentVictor Stinner2010-08-131-2/+6
| | | | | This function is only by imp.find_module() which does return the filename in a separated variable.
* Followup to r83869 and issue #8524: rename socket.forget() to socket.detach()Antoine Pitrou2010-08-092-9/+10
| | | | and make it return the file descriptor.
* Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded ↵Senthil Kumaran2010-08-094-6/+6
| | | | variations. Docs changed.
* issue #9452:Fred Drake2010-08-091-22/+73
| | | | | Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions.
* Also temporarily revert r83871, to fix compilation on buildbotsAntoine Pitrou2010-08-091-0/+7
|
* use 3 space indentsBenjamin Peterson2010-08-091-17/+16
|