summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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.
* Issue #8294: Allow float and Decimal arguments in Fraction constructor.Mark Dickinson2010-04-021-11/+38
|
* Implement #7347. Add CreateKeyEx, DeleteKeyEx, and update _winreg tests.Brian Curtin2010-04-021-3/+101
| | | | | | | | | *ReflectionKey functions used to not be documented or tested, but they are now sufficiently documented and tested on platforms where they apply. Additionally, fixed a bug in QueryReflectionKey which was returning an incorrect value. All tests pass from XP through Windows 7, on 32 and 64-bit platforms.
* Issue 8257: Decimal constructor to accept float.Raymond Hettinger2010-04-021-9/+13
|
* #6647: add note to two examplesAndrew M. Kuchling2010-04-021-2/+7
|
* #6647: document that catch_warnings is not thread-safeAndrew M. Kuchling2010-04-021-0/+8
|
* Remove col-spanning cells in logging docs.Georg Brandl2010-04-021-4/+4
|
* Issue #2531: Make float-to-decimal comparisons return correct results.Mark Dickinson2010-04-021-0/+18
| | | | | | | Float to decimal comparison operations now return a result based on the numeric values of the operands. Decimal.__hash__ has also been fixed so that Decimal and float values that compare equal have equal hash value.
* #2768: add a note on how to get a file descriptor.Georg Brandl2010-04-021-0/+4
|
* Cleanup itertools recipesRaymond Hettinger2010-04-021-8/+8
|
* Add and update itertools recipes.Raymond Hettinger2010-04-021-1/+23
|
* Document link to Sorting HowToRaymond Hettinger2010-04-011-0/+3
|
* A couple small grammar fixes in test.rst, and rewrite theR. David Murray2010-04-011-38/+46
| | | | check_warnings docs to be clearer.
* add inspect.getcallargs, which binds function arguments like a normal call #3135Benjamin Peterson2010-03-301-0/+26
| | | | Patch by George Sakkis
* Backport of weakref.WeakSet and tests from Python 3.Michael Foord2010-03-291-0/+8
|
* Update itertools recipe for consume().Raymond Hettinger2010-03-281-1/+7
|
* Add a note on optimizing the itertools recipes for production.Raymond Hettinger2010-03-281-0/+6
|
* Update itertools recipes.Raymond Hettinger2010-03-281-7/+28
|
* Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.Brian Curtin2010-03-251-173/+176
|
* logging: Updated SysLogHandler documentation.Vinay Sajip2010-03-241-0/+8
|
* logging: Documentation tweak.Vinay Sajip2010-03-241-2/+2
|
* logging: Added LOG_FTP for SysLogHandler and updated documentation.Vinay Sajip2010-03-241-0/+71
|
* Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docsSenthil Kumaran2010-03-231-1/+2
|
* Link specifically to the UCD version 5.2.0.Ezio Melotti2010-03-231-2/+2
|
* Remove link to objects.rst (gone in r79179).Ezio Melotti2010-03-231-1/+1
|
* Update the version number of the Unicode Database in a few more places.Ezio Melotti2010-03-221-3/+3
|
* logging: Added getChild utility method to Logger and added isEnabledFor ↵Vinay Sajip2010-03-221-0/+15
| | | | method to LoggerAdapter.
* Remove leftover word.Georg Brandl2010-03-211-2/+2
|
* Update text for newest US DST regulation. The sample file already has the ↵Georg Brandl2010-03-211-2/+2
| | | | calculation right.
* Clarify that for shell=True, the shell PID will be the child PID.Georg Brandl2010-03-211-0/+3
|
* Document that GzipFile supports iteration.Georg Brandl2010-03-211-1/+1
|
* Add a paragraph about set displays.Georg Brandl2010-03-211-0/+4
|
* Remove the "built-in objects" file. It only contained two paragraphs of ↵Georg Brandl2010-03-212-28/+0
| | | | which only one contained useful information, which belongs in the ref manual however.
* Fix some issues found by Jacques Ducasse on the docs list.Georg Brandl2010-03-213-9/+10
|
* wrapBenjamin Peterson2010-03-201-2/+2
|
* document exitfunc fixerBenjamin Peterson2010-03-201-0/+5
|
* Issue 7832: renaming unittest.TestCase.assertSameElements to ↵Michael Foord2010-03-201-14/+16
| | | | assertItemsEqual and changing behaviour
* Adding an example of reproducing the rfc822.Message() parsing.Sean Reifscheider2010-03-191-0/+6
|
* Add support for weak references to code objects. This will be used by an ↵Collin Winter2010-03-181-2/+2
| | | | | | optimization in the incoming Python 3 JIT. Patch by Reid Kleckner!
* #8155: Preserve backward compatibility for test_support.check_warnings(). ↵Florent Xicluna2010-03-181-50/+53
| | | | Add regression tests.
* Issue #8162: logging: Clarified docstring and documentation for disable ↵Vinay Sajip2010-03-171-1/+5
| | | | function.
* #8137: add iso-8859-16 to the standard encodings table.Georg Brandl2010-03-141-2/+4
|
* Minor documentation updates for xml.etree.Florent Xicluna2010-03-141-12/+14
|
* Add the keyword argument "method=None" to the .write() method and the ↵Florent Xicluna2010-03-131-29/+33
| | | | | | tostring/tostringlist functions. Update the function, class and method signatures, according to the new convention.