summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.Brian Curtin2010-03-251-173/+176
|
* Add various itemsAndrew M. Kuchling2010-03-251-14/+66
|
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-255-34/+230
| | | | CObject to PyCapsule.
* Various editsAndrew M. Kuchling2010-03-241-19/+23
|
* 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
|
* Another typo.Ezio Melotti2010-03-231-1/+1
|
* #8217: typo.Ezio Melotti2010-03-231-1/+1
|
* add some unittest itemsAndrew M. Kuchling2010-03-231-13/+20
|
* 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-223-9/+11
|
* logging: Added getChild utility method to Logger and added isEnabledFor ↵Vinay Sajip2010-03-221-0/+15
| | | | method to LoggerAdapter.
* Add itemsAndrew M. Kuchling2010-03-211-5/+30
|
* Remove leftover word.Georg Brandl2010-03-211-2/+2
|
* Include structmember.h correctly.Georg Brandl2010-03-211-1/+1
|
* Update text for newest US DST regulation. The sample file already has the ↵Georg Brandl2010-03-211-2/+2
| | | | calculation right.
* Update os.kill() emulation example for Windows to use ctypes.Georg Brandl2010-03-211-4/+6
|
* Mention inefficiency of lists as queues, add link to collections.deque ↵Georg Brandl2010-03-211-0/+5
| | | | discussion.
* Clarify that for shell=True, the shell PID will be the child PID.Georg Brandl2010-03-211-0/+3
|
* Introduce copy by slicing, used in later chapters.Georg Brandl2010-03-211-0/+6
|
* 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-202-15/+17
| | | | assertItemsEqual and changing behaviour
* Fixing the file call in the rfc822.Message replacement example.Sean Reifscheider2010-03-201-1/+1
|
* Adding an example of reproducing the rfc822.Message() parsing.Sean Reifscheider2010-03-192-0/+23
|
* 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.
* Update some parts of the xml.etree documentation.Florent Xicluna2010-03-132-189/+202
|
* Update for new download location.Georg Brandl2010-03-131-1/+2
|
* Change/fix handling of docs download location: for daily builds, put them ↵Georg Brandl2010-03-132-13/+11
| | | | right next to the HTML.
* Bump externals versions for doc build.Georg Brandl2010-03-133-13/+15
|
* Add Makefile targets for automatic doc build. Add script that will be used ↵Georg Brandl2010-03-132-10/+112
| | | | for daily build.
* #8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify ↵Ezio Melotti2010-03-131-9/+9
| | | | variable names.
* fix broken linksEzio Melotti2010-03-131-2/+3
|
* Fix warnings from "make check".Georg Brandl2010-03-129-31/+31
|
* Get rid of backticks.Georg Brandl2010-03-121-1/+1
|
* Issue #8117: Updated NEWS entry and added to logging documentation.Vinay Sajip2010-03-121-0/+5
|
* normalize shebang lines to #!/usr/bin/env pythonBenjamin Peterson2010-03-111-1/+1
|
* Issue #6472: The xml.etree package is updated to ElementTree 1.3. The ↵Florent Xicluna2010-03-111-127/+197
| | | | cElementTree module is updated too.