summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Some cleanup in the docs.Georg Brandl2007-12-2986-667/+363
|
* Patch #1583 by Adam Olsen.Guido van Rossum2007-12-191-0/+14
| | | | | | | This adds signal.set_wakeup_fd(fd) which sets a file descriptor to which a zero byte will be written whenever a C exception handler runs. I added a simple C API as well, PySignal_SetWakeupFd(fd).
* Users demand iterable input for named tuples. The author capitulates.Raymond Hettinger2007-12-181-16/+21
|
* Applied patch #1635: Float patch for inf and nan on Windows (and other ↵Christian Heimes2007-12-182-5/+14
| | | | | | platforms). The patch unifies float("inf") and repr(float("inf")) on all platforms.
* Simplify and speedup _asdict() for named tuples.Raymond Hettinger2007-12-181-2/+2
|
* Add more namedtuple() test cases. Neaten the code and comments.Raymond Hettinger2007-12-181-3/+5
|
* Remove curious space-like characters.Georg Brandl2007-12-161-3/+3
|
* Remove another unnecessary Unicode character.Georg Brandl2007-12-161-1/+1
|
* Remove gratuitous unicode character.Georg Brandl2007-12-161-1/+1
|
* Remove orphaned footnote reference.Georg Brandl2007-12-161-1/+1
|
* Add usage noteRaymond Hettinger2007-12-141-2/+10
|
* Faster and simpler _replace() methodRaymond Hettinger2007-12-141-1/+1
|
* Add line spacing for readabilityRaymond Hettinger2007-12-141-1/+8
|
* Cleaner method naming conventionRaymond Hettinger2007-12-141-15/+15
|
* Simplify implementation of __replace__()Raymond Hettinger2007-12-131-1/+1
|
* Added wide char api variants of getch and putch to msvcrt module. The wide ↵Christian Heimes2007-12-101-0/+32
| | | | char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too.
* Use a versionchanged directive.Brett Cannon2007-12-091-2/+5
|
* correct email addressSkip Montanaro2007-12-088-9/+9
|
* Add examples to the datetime documentation. Written for GHOP by "h4wk.cz".Georg Brandl2007-12-081-39/+298
|
* Don't have the docs berate themselves. Keep a professional tone.Raymond Hettinger2007-12-071-5/+0
| | | | If a todo is needed, put it in the tracker.
* Better re.split examples.Georg Brandl2007-12-061-11/+17
|
* Diverse markup fixes.Georg Brandl2007-12-066-6/+7
|
* Add examples to re docs. Written for GHOP by Dan Finnie.Georg Brandl2007-12-051-17/+285
|
* Add examples to csv, pprint and traceback docs.Georg Brandl2007-12-053-24/+189
| | | | Written by Ross for GHOP.
* Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch".Georg Brandl2007-12-041-11/+594
|
* Add examples to the xmlrpclib docs.Georg Brandl2007-12-032-7/+167
| | | | Written for GHOP by Josip Dzolonga.
* Patch #1537 from Chad AustinChristian Heimes2007-12-031-1/+3
| | | | | Change GeneratorExit's base class from Exception to BaseException (This time I'm applying the patch to the correct sandbox.)
* Issue #1727780: Support loading pickles of random.Random objects createdMartin v. Löwis2007-12-031-0/+3
| | | | | | on 32-bit systems on 64-bit systems, and vice versa. As a consequence of the change, Random pickles created by Python 2.6 cannot be loaded in Python 2.5.
* Add more entries to the glossary.Georg Brandl2007-12-0215-60/+62
| | | | Written by Jeff Wheeler for GHOP.
* Convert bdb.rst line endings to Unix style.Georg Brandl2007-12-021-337/+337
|
* Add example to mmap docs.Georg Brandl2007-12-021-0/+43
| | | | Written for GHOP by Rafal Rawicki.
* Add "Using Python on Windows" document, by Robert Lehmann.Georg Brandl2007-12-011-0/+1
| | | | Written for GHOP.
* Add examples to the ElementTree documentation.Georg Brandl2007-12-011-0/+68
| | | | Written by h4wk.cz for GHOP.
* Added one more missing versionadded tagChristian Heimes2007-12-011-0/+2
|
* Feature #1534Christian Heimes2007-12-011-0/+42
| | | | | Added PyFloat_GetMax(), PyFloat_GetMin() and PyFloat_GetInfo() to the float API. Added a dictionary sys.float_info with information about the internal floating point type to the sys module.
* Move lchmod() docs to correct place, and add versionadded tags.Georg Brandl2007-11-301-7/+13
|
* Fix for feature request #1528 Add os.fchmodChristian Heimes2007-11-301-0/+20
| | | | | Georg Brandl has added fchmod() and fchown(). I've contributed lchown but I'm not able to test it on Linux. However it should be available on Mac and some other flavors of Unix. I've made a quick test of fchmod() and fchown() on my system. They are working as expected.
* Add more examples to the wsgiref docs.Georg Brandl2007-11-291-1/+88
| | | | From GHOP by Josip Dzolonga.
* Add examples to the ConfigParser documentation.Georg Brandl2007-11-291-0/+87
| | | | Credits go to Thomas Lamb, who wrote this as a task in the GHOP contest.
* Fix reference target.Georg Brandl2007-11-291-1/+1
|
* Added py3kwarning to the documentation of the sys module.Christian Heimes2007-11-281-0/+6
|
* Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504Christian Heimes2007-11-271-0/+8
| | | | Also added a warning.warnpy3k() as convenient method for Python 3.x related deprecation warnings.
* Bug #1494: Document that appendChild removes first.Martin v. Löwis2007-11-241-2/+3
|
* #1735632: add O_NOATIME constant to os module.Georg Brandl2007-11-241-8/+10
| | | | Also document a few other O_ constants that were missing from documentation.
* #1355: remove mention of PyXML from xml.dom docs.Georg Brandl2007-11-241-9/+8
|
* #1467: fix documentation for TestResult.add{Error,Failure}.Georg Brandl2007-11-241-4/+6
|
* #1344: document that you need to open std{in,out,err} with PIPE if you wantGeorg Brandl2007-11-241-1/+6
| | | | communicate() to work as described.
* Fixed detail in add_type() explanation (issue 1463).Facundo Batista2007-11-191-2/+2
|
* Fix signature in exampleRaymond Hettinger2007-11-171-1/+1
|
* Add example for use cases requiring default values.Raymond Hettinger2007-11-151-0/+9
|