Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Review sysconfig docs. | Georg Brandl | 2010-02-06 | 1 | -80/+80 |
| | |||||
* | #7864: make deprecation notices a bit clearer. | Georg Brandl | 2010-02-06 | 1 | -7/+7 |
| | |||||
* | Minor doc change. | Michael Foord | 2010-02-05 | 1 | -1/+1 |
| | |||||
* | Adding versionadded to test skipping section of unittest documentation. | Michael Foord | 2010-02-05 | 1 | -3/+2 |
| | |||||
* | Example of using assertRaises as a context manager in the unittest ↵ | Michael Foord | 2010-02-05 | 1 | -2/+8 |
| | | | | documentation. | ||||
* | Closes issue 7030. | Michael Foord | 2010-02-05 | 1 | -1/+5 |
| | |||||
* | Resolve bug 7847 by including documentation for -J, -U, and -X under "Options | Barry Warsaw | 2010-02-05 | 1 | -5/+23 |
| | | | | you shouldn't use". | ||||
* | Issue #7851: logging: clarification on logging configuration files. | Vinay Sajip | 2010-02-04 | 1 | -0/+7 |
| | |||||
* | Use correct assert* methods in the examples. | Ezio Melotti | 2010-02-04 | 1 | -10/+10 |
| | |||||
* | Issue 6760: Clarify args handling for subprocess.Popen. Patch by Chris Rebert | Nick Coghlan | 2010-02-04 | 1 | -6/+31 |
| | |||||
* | Corrected list of attributes exposed by sys.getwindowsversion. | Eric Smith | 2010-02-03 | 1 | -4/+4 |
| | |||||
* | Explicitly mention the default value for formatdate's usegmt parameter. | R. David Murray | 2010-02-03 | 1 | -1/+1 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2010-02-03 | 1 | -12/+52 |
| | |||||
* | added a note in the whatsnew file for sysconfig | Tarek Ziadé | 2010-02-02 | 1 | -0/+8 |
| | |||||
* | first version of the sysconfig module documentation | Tarek Ziadé | 2010-02-02 | 2 | -0/+219 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2010-02-01 | 1 | -14/+31 |
| | |||||
* | Minor modification to unittest documentation. | Michael Foord | 2010-01-31 | 1 | -3/+3 |
| | |||||
* | Fix-up ftplib documentation: | Georg Brandl | 2010-01-31 | 1 | -30/+29 |
| | | | | | | move exception descriptions to toplevel, not inside a class remove attribution in "versionadded" spell and grammar check docstring of FTP_TLS | ||||
* | move distutils.rst to different toc | Benjamin Peterson | 2010-01-31 | 2 | -1/+1 |
| | |||||
* | #7802: fix invalid example (heh). | Georg Brandl | 2010-01-30 | 1 | -3/+3 |
| | |||||
* | Use the correct markup for args | Ezio Melotti | 2010-01-30 | 1 | -7/+7 |
| | |||||
* | Relocate a couple of stars and remove redundant backticks | Ezio Melotti | 2010-01-30 | 1 | -4/+4 |
| | |||||
* | Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a | Mark Dickinson | 2010-01-30 | 1 | -0/+13 |
| | | | | | long long variant of PyLong_AsLongAndOverflow. Patch by Case Van Horsen. | ||||
* | #7801: fix xmlrpclib binary example, open the picture in binary mode | Victor Stinner | 2010-01-30 | 1 | -2/+2 |
| | |||||
* | #7765: typos | Ezio Melotti | 2010-01-27 | 1 | -3/+3 |
| | |||||
* | Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool | Jesse Noller | 2010-01-27 | 1 | -1/+16 |
| | |||||
* | Fix type on getwindowsversion documentation. Thanks Taggnostr. | Eric Smith | 2010-01-27 | 1 | -1/+1 |
| | |||||
* | Issue #7766: Change sys.getwindowsversion() return value to a named tuple ↵ | Eric Smith | 2010-01-27 | 1 | -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.6 | Facundo Batista | 2010-01-25 | 1 | -0/+3 |
| | |||||
* | #7725: fix referencing issue. | Georg Brandl | 2010-01-23 | 1 | -1/+1 |
| | |||||
* | #7762: fix refcount annotation of PyUnicode_Tailmatch(). | Georg Brandl | 2010-01-23 | 1 | -1/+1 |
| | |||||
* | #7746: rephrase a sentence | Ezio Melotti | 2010-01-21 | 1 | -3/+2 |
| | |||||
* | data descriptors do not override the class dictionary if __get__ is not defined | Benjamin Peterson | 2010-01-18 | 1 | -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 Brandl | 2010-01-17 | 2 | -3/+6 |
| | |||||
* | #7699: improve datetime docs: straightforward linking to strftime/strptime ↵ | Georg Brandl | 2010-01-17 | 1 | -39/+43 |
| | | | | section, mark classmethods as such. | ||||
* | remove wrong markup | Ezio Melotti | 2010-01-16 | 1 | -1/+1 |
| | |||||
* | Issue #2846: Add support for gzip.GzipFile reading zero-padded files. | Antoine Pitrou | 2010-01-13 | 1 | -0/+3 |
| | | | | Patch by Brian Curtin. | ||||
* | #7685: typo | Ezio Melotti | 2010-01-13 | 1 | -5/+5 |
| | |||||
* | Added documentation for dictionary views fixer. | Alexandre Vassalotti | 2010-01-12 | 1 | -3/+5 |
| | |||||
* | Issue #1967: Backport dictionary views. | Alexandre Vassalotti | 2010-01-11 | 2 | -0/+122 |
| | |||||
* | Issue #2333: Backport set and dict comprehensions syntax. | Alexandre Vassalotti | 2010-01-11 | 1 | -34/+60 |
| | |||||
* | Issue #7119: document that a program-generated Message object | R. David Murray | 2010-01-10 | 3 | -3/+10 |
| | | | | tree may be mutated when serialized. | ||||
* | DeprecationWarning is now silent by default. | Brett Cannon | 2010-01-10 | 1 | -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 Vassalotti | 2010-01-09 | 1 | -1/+25 |
| | |||||
* | #7422: make it clear that getargspec() only works on Python functions. | Georg Brandl | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | #7653: clarify how the PythonPath registry key should look like. | Georg Brandl | 2010-01-07 | 1 | -6/+7 |
| | |||||
* | Fix description for Py_GetPath(); it sounded like it always returned sys.path. | Georg Brandl | 2010-01-07 | 1 | -8/+9 |
| | |||||
* | Eric Smith was missing fro m the issue 7117 whatsnew attribution. | Mark Dickinson | 2010-01-07 | 1 | -2/+2 |
| | |||||
* | #5950: document that zip files with comments are unsupported in zipimport. | Georg Brandl | 2010-01-06 | 1 | -0/+2 |
| | |||||
* | #3340: document print/get_usage and print/get_version | Ezio Melotti | 2010-01-04 | 1 | -0/+26 |
| |