summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* #9018: os.path.normcase() now raises a TypeError if the argument is not str ↵Ezio Melotti2010-06-251-0/+1
| | | | or bytes.
* Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, useVictor Stinner2010-06-252-17/+8
| | | | "w*" format instead. Add tests for "w*" format.
* Minor comment formatting.Senthil Kumaran2010-06-221-1/+1
|
* Minor docs issue.Senthil Kumaran2010-06-221-1/+1
|
* Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000.Alexander Belopolsky2010-06-211-4/+4
|
* Revert r82089. Commit was intended for a branch.Jean-Paul Calderone2010-06-191-78/+3
|
* merge forward from the python 2.x branchJean-Paul Calderone2010-06-191-3/+78
|
* Issue #8939: Improve arg.rstVictor Stinner2010-06-181-5/+5
| | | | | | * Add :ctype: to Py_BEGIN_ALLOW_THREADS and int * "s" and "s#" formats of Py_BuildValue(): specify that the Python object type is str in the description
* Added a new line at the end of the file.Alexander Belopolsky2010-06-181-1/+1
|
* Issue #6641: The datetime.strptime method now supports the %z directive.Alexander Belopolsky2010-06-171-0/+7
|
* Add note about changes to the `round` function between 2.x and 3.x.Mark Dickinson2010-06-171-0/+9
|
* Issue #850997: mbcs encoding (Windows only) handles errors argument: strictVictor Stinner2010-06-161-0/+17
| | | | | mode raises unicode errors. The encoder only supports "strict" and "replace" error handlers, the decoder only supports "strict" and "ignore" error handlers.
* Merged revisions 82026 via svnmerge fromSenthil Kumaran2010-06-161-2/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82026 | senthil.kumaran | 2010-06-16 23:07:32 +0530 (Wed, 16 Jun 2010) | 3 lines Addressing RDM's review comments on the doc change. ........
* Merged revisions 82018 via svnmerge fromSenthil Kumaran2010-06-161-1/+23
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82018 | senthil.kumaran | 2010-06-16 20:25:31 +0530 (Wed, 16 Jun 2010) | 3 lines Fix Issue8937 - SimpleHTTPServer should contain usage example ........
* Remove versionadded accidentally introduced by r82008.R. David Murray2010-06-161-4/+0
|
* Merged revisions 81634 via svnmerge fromR. David Murray2010-06-151-6/+17
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81634 | r.david.murray | 2010-05-31 21:42:41 -0400 (Mon, 31 May 2010) | 2 lines #7583: clarify discussion of hard tab expansion in doctests. ........
* Issue 5094: minor documentation fixesAlexander Belopolsky2010-06-151-22/+22
|
* Further refinements to the C file API.Antoine Pitrou2010-06-151-10/+14
|
* Fixes to the PyFile_FromFd() doc, by Renato Cunha.Antoine Pitrou2010-06-151-4/+5
|
* Merged revisions 81992 via svnmerge fromMark Dickinson2010-06-151-30/+33
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81992 | mark.dickinson | 2010-06-15 09:33:03 +0100 (Tue, 15 Jun 2010) | 3 lines Issue #8469: Further clarifications and improvements to struct module documentation. Thanks Mads Kiilerich. ........
* Issue #5094: The ``datetime`` module now has a simple concrete classAlexander Belopolsky2010-06-141-12/+82
| | | | implementing ``datetime.tzinfo`` interface.
* Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"Victor Stinner2010-06-131-0/+2
| | | | | formats if the string contains a null byte/character. Write unit tests for string formats.
* Issue #8469: Reorder struct module sections for clarity; other minor tweaks.Mark Dickinson2010-06-121-75/+79
|
* Issue #8469: add standard sizes to struct docs table.Mark Dickinson2010-06-121-40/+40
|
* More struct module docs and docstring tweaks.Mark Dickinson2010-06-121-21/+21
|
* Merged revisions 80578 via svnmerge fromNick Coghlan2010-06-121-11/+29
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80578 | nick.coghlan | 2010-04-29 00:29:06 +1000 (Thu, 29 Apr 2010) | 1 line Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) ........
* Issue #8969: On Windows, use mbcs codec in strict mode to encode and decodeVictor Stinner2010-06-111-4/+4
| | | | filenames and enable os.fsencode().
* Issue #8784: Set tarfile default encoding to 'utf-8' on Windows.Victor Stinner2010-06-111-2/+2
| | | | Note: file system encoding cannot be None anymore (since r81190, issue #8610).
* Fix some bugs in c-api/arg.rst documentationVictor Stinner2010-06-111-16/+15
| | | | | | | | | | | | | | | | * replace "the default encoding" by "'utf-8' encoding" * fix "w" / "w*" / "w#" doc: similar to "y" / "y*" / "y#" and not "s" / "s*" / "s#" * "u#": remove "Non-Unicode objects are handled by interpreting their read-buffer pointer ...", it's no more true * "es", "es#": remove "... and objects convertible to Unicode into a character buffer", it's no more true * Py_BuildValue(), "K" and "L" formats: specify the name of the C type on Windows (_int64 / unsigned _int64) as done for PyArg_Parse*() long long types --CETTE ligne, et les suivantes ci-dessous, seront ignorées-- M Doc/c-api/arg.rst
* Issue #8188: Comparisons between Decimal objects and other numericMark Dickinson2010-06-111-15/+9
| | | | objects (Fraction, float, complex, int) now all function as expected.
* Merged revisions 81864 via svnmerge fromAlexander Belopolsky2010-06-091-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81864 | alexander.belopolsky | 2010-06-09 13:08:11 -0400 (Wed, 09 Jun 2010) | 1 line Fixed markup of tm_isdst attribute. ........
* http://bugs.python.org/issue8832Kristján Valur Jónsson2010-06-091-0/+7
| | | | Issue minidom.unlink with a context manager
* Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing formatVictor Stinner2010-06-082-7/+3
| | | | | Remove last references to the "char buffer" of the buffer protocol from Python3.
* Fix #8946. Extra PyObject* parameter documented which doesn't exist.Brian Curtin2010-06-081-3/+3
|
* Merged revisions 81489 via svnmerge fromAlexander Belopolsky2010-06-081-7/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81489 | georg.brandl | 2010-05-23 17:29:29 -0400 (Sun, 23 May 2010) | 1 line #1436346: make it more obvious that timetuple[7] is yday. ........
* Issue #8925: fix types of Py_Parse*() and Py_BuildValue() functionsVictor Stinner2010-06-071-89/+91
| | | | | | | | | * Add links to Python types * Replace "string" by bytes or str * Replace "long" by "int" * Specify the default encoding * Fix reST syntax ("..note ::") * etc.
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-4/+2
|
* Merged revisions 81788 via svnmerge fromTarek Ziadé2010-06-061-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81788 | tarek.ziade | 2010-06-06 22:05:20 +0200 (Sun, 06 Jun 2010) | 1 line Fixed #8909: now the doc details the size of the bitmap used in distutils' bdist_wininst ........
* bltn-file-objects don't exist in python3Benjamin Peterson2010-06-061-1/+1
|
* reST indentation nitBenjamin Peterson2010-06-061-1/+1
|
* fix typoBenjamin Peterson2010-06-061-1/+1
|
* Merged revisions 81774-81775 via svnmerge fromBenjamin Peterson2010-06-061-2/+2
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81774 | benjamin.peterson | 2010-06-05 19:50:58 -0500 (Sat, 05 Jun 2010) | 1 line remove extra space ........ r81775 | benjamin.peterson | 2010-06-05 19:54:29 -0500 (Sat, 05 Jun 2010) | 1 line fix sphinx warning with an extra space ........
* Merged revisions 81767 via svnmerge fromMichael Foord2010-06-051-2/+21
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81767 | michael.foord | 2010-06-05 22:57:03 +0100 (Sat, 05 Jun 2010) | 1 line Documentation updates for issues 8302 and 8351 (truncating excessive diffs in unittest failure messages and reporting SkipTest exceptions in setUpClass and setUpModule as skips rather than errors). ........
* Merged revisions 81756 via svnmerge fromAlexander Belopolsky2010-06-051-24/+25
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81756 | alexander.belopolsky | 2010-06-05 10:54:26 -0400 (Sat, 05 Jun 2010) | 1 line Issue #8899: time.struct_time now has class and atribute docstrings. ........
* remove description of LOAD_LOCALS #8874Benjamin Peterson2010-06-021-7/+0
|
* Merged revisions 81652 via svnmerge fromAntoine Pitrou2010-06-021-0/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81652 | antoine.pitrou | 2010-06-02 19:08:47 +0200 (mer., 02 juin 2010) | 4 lines Issue #8873: add a documentation note about possible performance issues with the default of unbuffered IO in subprocess.Popen. ........
* Merged revisions 81645 via svnmerge fromSenthil Kumaran2010-06-021-13/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81645 | senthil.kumaran | 2010-06-02 07:49:15 +0530 (Wed, 02 Jun 2010) | 3 lines Fix issue8788 - description of doseq parameter in urllib.urlencode ........
* #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.R. David Murray2010-06-012-1/+21
| | | | Patch by R. David Murray, unit tests by Shashwat Anand.
* Merged revisions 81586 via svnmerge fromR. David Murray2010-06-011-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81586 | r.david.murray | 2010-05-28 14:08:11 -0400 (Fri, 28 May 2010) | 2 lines Make reference to Generic Attribute Management a hyperlink. ........
* Issue #1289118: datetime.timedelta objects can now be multiplied by floatAlexander Belopolsky2010-05-311-2/+12
| | | | and divided by float and int objects.