summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* name correctAndrew M. Kuchling2010-04-111-1/+1
|
* Add various itemsAndrew M. Kuchling2010-04-111-2/+59
|
* Punctuation fixAndrew M. Kuchling2010-04-111-1/+1
|
* Two grammar fixesAndrew M. Kuchling2010-04-111-2/+2
|
* Add the sorting HOWTO to the main docs.Raymond Hettinger2010-04-112-0/+285
|
* #8346: update version.Georg Brandl2010-04-101-3/+3
|
* #8360: skipTest was added in 2.7.Georg Brandl2010-04-101-0/+2
|
* Fixup new itertools recipes.Raymond Hettinger2010-04-101-3/+7
|
* Correction of unittest documentation typos and omissionsMichael Foord2010-04-081-3/+3
|
* Issue #8331: logging: fixed some grammatical errors in documentation.Vinay Sajip2010-04-071-2/+2
|
* tell people to update python.man, tooBenjamin Peterson2010-04-061-0/+3
|
* #7301: add the environment variable $PYTHONWARNINGS to supplement the -WPhilip Jenvey2010-04-061-0/+8
| | | | | command line option patch from Brian Curtin
* Issue #8327: logging: Clarification of propagation functionality in ↵Vinay Sajip2010-04-061-13/+16
| | | | documentation.
* More NaN consistency doc fixes.Mark Dickinson2010-04-061-3/+3
|
* Use consistent spelling for nans (thanks Georg for noticing).Mark Dickinson2010-04-061-3/+3
|
* Fix syntax.Georg Brandl2010-04-061-1/+3
|
* Issue #7947: Clarify math module behaviour for IEEE 754 special cases, alongMark Dickinson2010-04-061-26/+24
| | | | with a number of additional minor edits and typo corrections.
* Issue #8259: Clarify that there's an upper bound on the right-hand operand ↵Mark Dickinson2010-04-061-0/+3
| | | | of a shift operator.
* Note that PEP 378 also applies to int.Eric Smith2010-04-061-0/+5
|
* Fixed PEP 378 example.Eric Smith2010-04-061-6/+1
|
* #8320: document return value of recv_into().Georg Brandl2010-04-061-4/+4
|
* Fix several links and other mistakes.Ezio Melotti2010-04-061-166/+191
|
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-051-0/+30
| | | | | using the new attributes `ssl.OPENSSL_VERSION`, `ssl.OPENSSL_VERSION_INFO` and `ssl.OPENSSL_VERSION_NUMBER`.
* added a note for Andrew, about distutils2Tarek Ziadé2010-04-051-0/+3
|
* Fix some broken URLs.Ezio Melotti2010-04-055-7/+7
|
* Further documentation fix for unittest.rstMichael Foord2010-04-051-1/+1
|
* Furterh documentation fix for unittest.rstMichael Foord2010-04-051-1/+1
|
* Documentation fixes for unittestMichael Foord2010-04-051-7/+8
|
* Fix markup errors.Ezio Melotti2010-04-053-3/+3
|
* Fix markup, punctuation and whitespaces in _winreg.rst.Ezio Melotti2010-04-051-73/+75
|
* #8212: rephrase the webservers howto and fix some mistakes.Ezio Melotti2010-04-051-374/+421
|
* Document signal handling functions in unittest.rstMichael Foord2010-04-051-8/+33
|
* Adding documentation for new unittest.main() parametersMichael Foord2010-04-041-3/+7
|
* Fix markup in decimal.rst.Ezio Melotti2010-04-041-1/+1
|
* unittest documentation formatting changesMichael Foord2010-04-041-13/+37
|
* Add tests for functools.total_ordering.Raymond Hettinger2010-04-041-2/+1
|
* Add versionchanged entry for Decimal(float) construction.Mark Dickinson2010-04-041-7/+15
| | | | | | Also add an example of constructing a Decimal directly from a float, update the quickstart tutorial, and tweak another couple of sentences.
* Add tests for cmp_to_key.Raymond Hettinger2010-04-043-6/+6
| | | | | | Adopt PEP 8 compliant function name. Factor-out existing uses cmp_to_key. Update documentation to use internal pointers instead of external resource.
* Add functools.CmpToKey()Raymond Hettinger2010-04-041-0/+22
|
* Documentation nitRaymond Hettinger2010-04-041-0/+2
|
* Revert 79733 - Counter is new in 2.7, the versionadded is not necessary - ↵Ezio Melotti2010-04-041-3/+1
| | | | and fix a typo.
* Add a versionadded to Counter.subtract() doc.Ezio Melotti2010-04-041-0/+2
|
* Issue 5479: Add functools.total_ordering class decorator.Raymond Hettinger2010-04-041-0/+20
|
* Fix wording / typography, and a slightly misleading statementAntoine Pitrou2010-04-031-5/+5
| | | | (memoryviews don't support complex structures right now)
* Add count() method to collections.deque().Raymond Hettinger2010-04-031-0/+6
|
* Documenting new features in unittestMichael Foord2010-04-031-6/+168
|
* Issue #8300: Let struct.pack use __index__ to convert and pack non-integers.Mark Dickinson2010-04-031-3/+8
| | | | Based on a patch by Meador Inge.
* Add subtract() method to collections.Counter() objects.Raymond Hettinger2010-04-031-0/+11
|
* Issue #8227: Fix C API documentation, argument parsingVictor Stinner2010-04-031-10/+10
| | | | | * 'z', 'z#', 'z*' does also accept Unicode * unify types name: replace "string or Unicode objet" by "string or Unicode"
* Implement #1220212. Add os.kill support for Windows.Brian Curtin2010-04-023-3/+25
| | | | | | | | | | | | | | os.kill takes one of two newly added signals, CTRL_C_EVENT and CTRL_BREAK_EVENT, or any integer value. The events are a special case which work with subprocess console applications which implement a special console control handler. Any other value but those two will cause os.kill to use TerminateProcess, outright killing the process. This change adds win_console_handler.py, which is a script to implement SetConsoleCtrlHandler and applicable handler function, using ctypes. subprocess also gets another attribute which is a necessary flag to creationflags in Popen in order to send the CTRL events.