summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Added updates with respect to recent changes to TimedRotatingFileHandler.Vinay Sajip2008-04-021-4/+5
|
* PyErr_Warn is decrepated. Use PyErr_WarnExBenjamin Peterson2008-03-311-1/+1
|
* #2505: allow easier creation of AST nodes.Georg Brandl2008-03-301-2/+25
|
* Documented the lastrowid attribute.Gerhard Häring2008-03-291-0/+6
|
* Fix capitalization.Georg Brandl2008-03-291-1/+1
|
* Be explicit about what efficient means.Raymond Hettinger2008-03-291-2/+2
|
* Brought documentation for sqlite3 module up-to-date. Fixed Issue1625205 whichGerhard Häring2008-03-291-5/+43
| | | | complained about commit, rollback and close not being documented.
* #2502: add example how to do enum types with named tuples.Georg Brandl2008-03-281-0/+10
|
* Phase out has_key usage in the tutorial; correct docs for PyMapping_HasKey*.Georg Brandl2008-03-281-1/+1
|
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-284-30/+37
| | | | | allow compiling Python AST objects into code objects in compile().
* Accept patch issue2426 by Paul Kippes (kippesp).Gregory P. Smith2008-03-281-0/+21
| | | | Adds sqlite3.Connection.iterdump to allow dumping of databases.
* #2406: add examples to gzip docs.Georg Brandl2008-03-281-8/+41
|
* #2248: return result of QUIT from quit().Georg Brandl2008-03-271-1/+6
|
* Add an example for an RFC 822 continuation.Georg Brandl2008-03-261-6/+8
|
* #2476: document that %default feature is new in 2.4.Georg Brandl2008-03-251-4/+5
|
* #868845: document <...> reprs.Georg Brandl2008-03-251-5/+9
|
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-7/+60
|
* #1700821: add a note to audioop docs about signedness of sample formats.Georg Brandl2008-03-241-0/+12
|
* Tighten documentation for Random.triangular.Raymond Hettinger2008-03-241-5/+5
|
* Adopt Nick's suggestion for useful default arguments.Raymond Hettinger2008-03-231-1/+6
| | | | Clean-up floating point issues by adding true division and float constants.
* Issue 1681432: Add triangular distribution the random module.Raymond Hettinger2008-03-231-0/+4
|
* Make the doctests presentation-friendlier.Georg Brandl2008-03-231-4/+6
|
* Simplify demo code.Raymond Hettinger2008-03-231-1/+1
|
* Enable doctest running for several other documents.Georg Brandl2008-03-2220-90/+97
| | | | We have now over 640 doctests that are run with "make doctest".
* Enable doctests in functions.rst. Already found two errors :)Georg Brandl2008-03-221-10/+12
|
* Test doctests in operator docs.Georg Brandl2008-03-221-11/+12
|
* Test doctests in datetime docs.Georg Brandl2008-03-221-15/+19
|
* Make collections' doctests executable.Georg Brandl2008-03-221-43/+51
| | | | (The <BLANKLINE>s will be stripped from presentation output.)
* Fix-up syntax problems.Georg Brandl2008-03-221-21/+19
|
* No need to specify explicit "doctest_block" anymore.Georg Brandl2008-03-222-8/+11
|
* Make more doctests in pprint docs testable.Georg Brandl2008-03-221-17/+12
|
* Make doctests in re docs usable with sphinx' doctest.Georg Brandl2008-03-221-73/+88
|
* Test decimal.rst doctests as far as possible with sphinx doctest.Georg Brandl2008-03-221-32/+55
|
* Activate the Sphinx doctest extension and convert howto/functional to use it.Georg Brandl2008-03-221-5/+12
|
* #1918: document that weak references *to* an object areGeorg Brandl2008-03-221-16/+24
| | | | | cleared before the object's __del__ is called, to ensure that the weak reference callback (if any) finds the object healthy.
* Applied patch #1657 epoll and kqueue wrappers for the select moduleChristian Heimes2008-03-211-4/+300
| | | | | The patch adds wrappers for the Linux epoll syscalls and the BSD kqueue syscalls. Thanks to Thomas Herve and the Twisted people for their support and help. TODO: Finish documentation documentation
* Add missing versionadded tag.Georg Brandl2008-03-211-0/+2
|
* Add docs for print_function and future_builtins. Fixes #2442.Georg Brandl2008-03-213-0/+81
|
* Add docs for __func__ and __self__ on methods.Georg Brandl2008-03-211-4/+4
|
* Fix a code block in __future__ docs.Georg Brandl2008-03-211-3/+2
|
* Clarfiy the availability of the extended support for win32_ver() in Py2.6.Marc-André Lemburg2008-03-201-1/+2
|
* Add documentation for updated Windows support in win32_ver().Marc-André Lemburg2008-03-201-4/+23
| | | | Add documentation for linux_distribution() API.
* Issue 2188: Documentation hint about disabling proxy detection.Sean Reifscheider2008-03-201-0/+1
|
* Prevent ioctl op codes from being sign extended from int to unsigned longGregory P. Smith2008-03-191-0/+2
| | | | | | | | | | | when used on platforms that actually define ioctl as taking an unsigned long. (the BSDs and OS X / Darwin) Adds a unittest for fcntl.ioctl that tests what happens with both positive and negative numbers. This was done because of issue1471 but I'm not able to reproduce -that- problem in the first place on Linux 32bit or 64bit or OS X 10.4 & 10.5 32bit or 64 bit.
* Another one.Georg Brandl2008-03-191-1/+1
|
* Remove footnote from versionchanged as it upsets LaTeX.Georg Brandl2008-03-191-2/+1
|
* Mention that crc32 and adler32 are available in a different module (zlib).Gregory P. Smith2008-03-191-0/+4
| | | | Some people look for them in hashlib.
* Document unicode.isnumeric() and unicode.isdecimal() (issue2326)Steven Bethard2008-03-171-0/+16
|
* Force zlib.crc32 and zlib.adler32 to return a signed integer on all platformsGregory P. Smith2008-03-171-0/+12
| | | | | | | | | regardless of the native sizeof(long) used in the integer object. This somewhat odd behavior of returning a signed is maintained in 2.x for compatibility reasons of always returning an integer rather than a long object. Fixes Issue1202 for Python 2.6
* Added a footnote to each pointing out that for XML output if an encodingMark Summerfield2008-03-173-5/+29
| | | | | string is given it should conform to the appropriate XML standards---for example, "UTF-8" is okay, but "UTF8" is not.