Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14502: it's RuntimeError on 3.3 | Sandro Tosi | 2012-04-06 | 1 | -1/+1 |
| | |||||
* | merge 3.2 | Benjamin Peterson | 2012-04-06 | 1 | -1/+1 |
|\ | |||||
| * | Issue #14502: release() and unlocked lock generates a ThreadError | Sandro Tosi | 2012-04-05 | 1 | -1/+1 |
| | | |||||
* | | Issue #14502: merge with 3.2 | Sandro Tosi | 2012-04-05 | 1 | -1/+1 |
| | | |||||
* | | Replace ThreadError by RuntimeError: the former is now an obsolete alias of ↵ | Georg Brandl | 2012-04-05 | 2 | -2/+2 |
| | | | | | | | | the latter. | ||||
* | | Merge #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 |
| | | |||||
* | | Move ChainMap versionadded to be less ambiguous. | Georg Brandl | 2012-04-03 | 1 | -2/+2 |
| | | |||||
* | | Expose clock_settime() as time.clock_settime() | Victor Stinner | 2012-04-02 | 1 | -0/+7 |
| | | |||||
* | | Add time.CLOCK_HIGHRES constant, needed on Solaris | Victor Stinner | 2012-04-02 | 1 | -0/+9 |
| | | |||||
* | | Fix markup errors found by "make suspicious". | Georg Brandl | 2012-04-01 | 2 | -4/+4 |
| | | |||||
* | | Fix formatting | Antoine Pitrou | 2012-03-31 | 1 | -7/+7 |
| | | |||||
* | | Issue #14456: improve documentation of the signal module w.r.t. threads. | Antoine Pitrou | 2012-03-31 | 1 | -42/+65 |
|\ \ | |/ | |||||
| * | Issue #14456: improve documentation of the signal module w.r.t. threads. | Antoine Pitrou | 2012-03-31 | 1 | -40/+52 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-03-31 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | use unittest.skip; thanks to Chang Min Jeon from docs@ | Sandro Tosi | 2012-03-31 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-03-31 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | add 'safari' to webbrowser browsers table; thanks to Jonathan Eunice from docs@ | Sandro Tosi | 2012-03-31 | 1 | -0/+2 |
| | | |||||
* | | issue #3035: update PendingDeprecationWarning to DeprectionWarning, point ↵ | Andrew Svetlov | 2012-03-31 | 1 | -6/+15 |
| | | | | | | | | deprecation in tkinter doc | ||||
* | | Merge #10423: clarify options vs args in argparse discussion of optparse | R David Murray | 2012-03-30 | 1 | -2/+3 |
|\ \ | |/ | | | | | Patch by Sandro Tosi. | ||||
| * | #10423: clarify options vs args in argparse discussion of optparse | R David Murray | 2012-03-30 | 1 | -2/+3 |
| | | | | | | | | Patch by Sandro Tosi. | ||||
* | | Issue #14006: improve the documentation of xml.etree.ElementTree | Eli Bendersky | 2012-03-30 | 1 | -53/+126 |
| | | | | | | | | | | | | | | | | Removed the useless explanation of the Element data structure that started the documentation page. Instead, the documentation now starts with a brief tutorial skimming some of the capabilities of the module. The tutorial can be followed by additional topic-specific sections (such as XPath support), and eventually by a reference that goes over the module's classes and functions, as usual. | ||||
* | | Fix typo in unittest.mock docs | Michael Foord | 2012-03-29 | 1 | -1/+1 |
| | | |||||
* | | #14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog. | R David Murray | 2012-03-29 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | Unlike the other facilities, we don't use a fallback for AUTHPRIV if it doesn't exist. Because it is intended for logging sensitive log messages, it is better that a program trying to log such messages fail than that it log them insecurely. Initial patch by Federico Reghenzani. | ||||
* | | Merge #14416: add missing LOG_SYSLOG facility to syslog docs. | R David Murray | 2012-03-29 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | #14416: add missing LOG_SYSLOG facility to syslog docs. | R David Murray | 2012-03-29 | 1 | -1/+2 |
| | | |||||
* | | Fix newlines. | Georg Brandl | 2012-03-29 | 1 | -0/+7 |
| | | |||||
* | | Update unittest.mock.patch example | Michael Foord | 2012-03-28 | 1 | -2/+2 |
| | | |||||
* | | Re-order unittest.mock documentation to put magic method support before the ↵ | Michael Foord | 2012-03-28 | 1 | -219/+220 |
| | | | | | | | | helpers | ||||
* | | Adding an example to unittest.mock.patch documentation | Michael Foord | 2012-03-28 | 1 | -0/+9 |
| | | |||||
* | | Minor unittest.mock.patch doc / docstring improvement | Michael Foord | 2012-03-28 | 1 | -11/+14 |
| | | |||||
* | | Unsplit unittest.mock documentation | Michael Foord | 2012-03-28 | 7 | -1733/+1701 |
| | | |||||
* | | Fix doc typo noticed by Amaury Forgeot d'Arc | Eli Bendersky | 2012-03-27 | 1 | -1/+1 |
| | | |||||
* | | Issue #6488: Explain the XPath support of xml.etree.ElementTree, with code | Eli Bendersky | 2012-03-26 | 1 | -30/+132 |
| | | | | | | | | | | | | samples and a reference. Also fix the other nits mentioned in the issue. This also partially addresses issue #14006. | ||||
* | | Issue #14410: merge with 3.2 | Sandro Tosi | 2012-03-26 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #14410: fix typo in argparse doc; patch by Tshepang Lekhonkhobe | Sandro Tosi | 2012-03-26 | 1 | -2/+2 |
| | | |||||
* | | Updated handler documentation. | Vinay Sajip | 2012-03-26 | 1 | -2/+8 |
|\ \ | |/ | |||||
| * | Minor documentation tweak. | Vinay Sajip | 2012-03-26 | 1 | -1/+1 |
| | | |||||
* | | Adding unittest.mock documentation | Michael Foord | 2012-03-25 | 7 | -0/+3513 |
| | | |||||
* | | Remove extra spaces in doc example. | Andrew Svetlov | 2012-03-25 | 1 | -3/+3 |
| | | |||||
* | | Issue #14349: Fix the doc of the MAKE_FUNCTION opcode in Doc/library/dis.rst to | Eli Bendersky | 2012-03-24 | 1 | -3/+4 |
| | | | | | | | | correctly list the stack params it expects. | ||||
* | | Fix indentation. | Georg Brandl | 2012-03-24 | 1 | -24/+24 |
| | | |||||
* | | Use the same exception hierarchy as decimal.py. FloatOperation now also | Stefan Krah | 2012-03-23 | 1 | -1/+1 |
| | | | | | | | | | | inherits from TypeError. Cleanup in module initialization to make repeated import failures robust. | ||||
* | | Issue #13782: streamline argument type-checking in ET.Element | Eli Bendersky | 2012-03-23 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | append, extend and insert now consistently type-check their argument in both the C and Python implementations, and raise TypeError for non-Element argument. Added tests | ||||
* | | #14380: Have MIMEText defaults to utf-8 when passed non-ASCII unicode | R David Murray | 2012-03-23 | 1 | -3/+3 |
| | | | | | | | | | | | | | | Previously it would just accept the unicode, which would wind up as unicode in the transfer-encoded message object, which is just wrong. Patch by Jeff Knupp. | ||||
* | | Fix indentation. | Georg Brandl | 2012-03-22 | 1 | -2/+3 |
| | | |||||
* | | Issue #14204: The ssl module now has support for the Next Protocol ↵ | Antoine Pitrou | 2012-03-21 | 1 | -1/+34 |
| | | | | | | | | | | | | Negotiation extension, if available in the underlying OpenSSL library. Patch by Colin Marc. | ||||
* | | Document decimal.MIN_ETINY. | Stefan Krah | 2012-03-21 | 1 | -9/+12 |
| | | |||||
* | | Issue #7652: Integrate the decimal floating point libmpdec library to speed | Stefan Krah | 2012-03-21 | 2 | -32/+150 |
| | | | | | | | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application. | ||||
* | | time.steady() doc: don't repeat the default value | Victor Stinner | 2012-03-19 | 1 | -1/+1 |
| | |