summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #6963: Added maxtasksperchild argument to multiprocessing.PoolJesse Noller2010-01-271-1/+16
|
* Fix type on getwindowsversion documentation. Thanks Taggnostr.Eric Smith2010-01-271-1/+1
|
* Issue #7766: Change sys.getwindowsversion() return value to a named tuple ↵Eric Smith2010-01-271-5/+30
| | | | and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type.
* Added a note about Event.is_set() syntax being new to 2.6Facundo Batista2010-01-251-0/+3
|
* #7725: fix referencing issue.Georg Brandl2010-01-231-1/+1
|
* #7762: fix refcount annotation of PyUnicode_Tailmatch().Georg Brandl2010-01-231-1/+1
|
* #7746: rephrase a sentenceEzio Melotti2010-01-211-3/+2
|
* data descriptors do not override the class dictionary if __get__ is not definedBenjamin Peterson2010-01-181-11/+10
| | | | | | | Adjust documentation and add a test to verify this behavior. See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for discussion.
* Fix internal reference.Georg Brandl2010-01-172-3/+6
|
* #7699: improve datetime docs: straightforward linking to strftime/strptime ↵Georg Brandl2010-01-171-39/+43
| | | | section, mark classmethods as such.
* remove wrong markupEzio Melotti2010-01-161-1/+1
|
* Issue #2846: Add support for gzip.GzipFile reading zero-padded files.Antoine Pitrou2010-01-131-0/+3
| | | | Patch by Brian Curtin.
* #7685: typoEzio Melotti2010-01-131-5/+5
|
* Added documentation for dictionary views fixer.Alexandre Vassalotti2010-01-121-3/+5
|
* Issue #1967: Backport dictionary views.Alexandre Vassalotti2010-01-112-0/+122
|
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-34/+60
|
* Issue #7119: document that a program-generated Message objectR. David Murray2010-01-103-3/+10
| | | | tree may be mutated when serialized.
* DeprecationWarning is now silent by default.Brett Cannon2010-01-101-9/+35
| | | | | | | | | | | | This was originally suggested by Guido, discussed on the stdlib-sig mailing list, and given the OK by Guido directly to me. What this change essentially means is that Python has taken a policy of silencing warnings that are only of interest to developers by default. This should prevent users from seeing warnings which are triggered by an application being run against a new interpreter before the app developer has a chance to update their code. Closes issue #7319. Thanks to Antoine Pitrou, Ezio Melotti, and Brian Curtin for helping with the issue.
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-1/+25
|
* #7422: make it clear that getargspec() only works on Python functions.Georg Brandl2010-01-091-1/+1
|
* #7653: clarify how the PythonPath registry key should look like.Georg Brandl2010-01-071-6/+7
|
* Fix description for Py_GetPath(); it sounded like it always returned sys.path.Georg Brandl2010-01-071-8/+9
|
* Eric Smith was missing fro m the issue 7117 whatsnew attribution.Mark Dickinson2010-01-071-2/+2
|
* #5950: document that zip files with comments are unsupported in zipimport.Georg Brandl2010-01-061-0/+2
|
* #3340: document print/get_usage and print/get_versionEzio Melotti2010-01-041-0/+26
|
* fixed markup errorsEzio Melotti2010-01-043-3/+3
|
* :stmt: -> :keyword:Ezio Melotti2010-01-031-1/+1
|
* #7618: fix highlight of code blocksEzio Melotti2010-01-031-7/+19
|
* issue3972: HTTPConnection and HTTPSConnection now support aGregory P. Smith2010-01-032-5/+14
| | | | | | source_address parameter. Also cleans up an annotation in the socket documentation.
* Adds an optional source_address parameter to socket.create_connection().Gregory P. Smith2010-01-031-1/+7
| | | | For use by issue3972.
* Add a few itemsAndrew M. Kuchling2010-01-031-13/+20
|
* Correct documentation for s* z* and w*, the argument that should be passedGregory P. Smith2010-01-021-3/+3
| | | | is the address of a Py_buffer, not a Py_buffer *.
* Clarify that the rect, phase and polar functions work with radians.Mark Dickinson2010-01-021-2/+2
|
* more copyright year updatesEzio Melotti2010-01-012-2/+2
|
* Add some missing command-line options to the main list. All but -V were alreadyBrett Cannon2010-01-011-2/+4
| | | | documented. Left -V undocumented for now (and -U was already undocumented).
* add another advancementBenjamin Peterson2009-12-311-3/+4
|
* Add various itemsAndrew M. Kuchling2009-12-311-1/+26
|
* Add some itemsAndrew M. Kuchling2009-12-311-9/+27
|
* check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604)Benjamin Peterson2009-12-301-1/+4
| | | | | Also, add a note to the docs about the better behavior of T_OBJECT_EX as compared to T_OBJECT.
* We only support Windows NT derivatives now.Georg Brandl2009-12-301-3/+1
|
* #7602: improve "clean" and "checkout" targets now that all tools are in ↵Georg Brandl2009-12-301-5/+4
| | | | externals.
* #7487: update Pygments version.Georg Brandl2009-12-302-2/+2
|
* Use new Pygments version.Georg Brandl2009-12-301-1/+1
|
* #5511: Added the ability to use ZipFile as a context manager. Patch by Brian ↵Ezio Melotti2009-12-301-20/+27
| | | | Curtin.
* Add various itemsAndrew M. Kuchling2009-12-291-3/+68
|
* #7595: fix typo in argument default constant.Georg Brandl2009-12-291-1/+1
|
* Various additionsAndrew M. Kuchling2009-12-291-26/+66
|
* Fix wrong markup.Georg Brandl2009-12-291-2/+2
|
* Improve markup of ctypes docs.Georg Brandl2009-12-291-321/+326
|
* #7569: clarification about c_char_p.Georg Brandl2009-12-291-2/+4
|