Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 2408: remove the _types module | Amaury Forgeot d'Arc | 2008-04-08 | 1 | -8/+10 |
| | | | | | | | | | It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler. | ||||
* | Add items | Andrew M. Kuchling | 2008-04-08 | 1 | -2/+65 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2008-04-07 | 1 | -2/+2 |
| | |||||
* | Write PEP 3127 section; add items | Andrew M. Kuchling | 2008-04-07 | 1 | -8/+82 |
| | |||||
* | #2525: update timezone info examples in the docs. | Georg Brandl | 2008-04-07 | 1 | -8/+38 |
| | |||||
* | changed "2500 components" to "several thousand" since the number keeps | Mark Summerfield | 2008-04-07 | 1 | -2/+3 |
| | | | | growning:-) | ||||
* | correct heading underline for new "Cross-compiling on Windows" section | Mark Hammond | 2008-04-07 | 1 | -1/+1 |
| | |||||
* | Issue #2513: enable 64bit cross compilation on windows. | Mark Hammond | 2008-04-07 | 1 | -0/+36 |
| | |||||
* | Make file objects as thread safe as the underlying libc FILE* implementation. | Gregory P. Smith | 2008-04-06 | 1 | -1/+33 |
| | | | | | | | | | | | close() will now raise an IOError if any operations on the file object are currently in progress in other threads. Most code was written by Antoine Pitrou (pitrou). Additional testing, documentation and test suite cleanup done by me (gregory.p.smith). Fixes issue 815646 and 595601 (as well as many other bugs and references to this problem dating back to the dawn of Python). | ||||
* | Write PEP 3119 section | Andrew M. Kuchling | 2008-04-05 | 1 | -18/+119 |
| | |||||
* | Mention that the tuple returned by __reduce__ is pickled as normal. | Georg Brandl | 2008-04-05 | 1 | -2/+3 |
| | |||||
* | Markup fixes; write PEP 3118 section | Andrew M. Kuchling | 2008-04-05 | 1 | -19/+61 |
| | |||||
* | Various edits | Andrew M. Kuchling | 2008-04-05 | 1 | -16/+45 |
| | |||||
* | Markup fix; explain what interval timers do; typo fix | Andrew M. Kuchling | 2008-04-05 | 1 | -2/+8 |
| | |||||
* | Minor edits | Andrew M. Kuchling | 2008-04-05 | 1 | -3/+3 |
| | |||||
* | Added updates with respect to recent changes to TimedRotatingFileHandler. | Vinay Sajip | 2008-04-02 | 1 | -4/+5 |
| | |||||
* | PyErr_Warn is decrepated. Use PyErr_WarnEx | Benjamin Peterson | 2008-03-31 | 1 | -1/+1 |
| | |||||
* | #2505: allow easier creation of AST nodes. | Georg Brandl | 2008-03-30 | 1 | -2/+25 |
| | |||||
* | Documented the lastrowid attribute. | Gerhard Häring | 2008-03-29 | 1 | -0/+6 |
| | |||||
* | Fix capitalization. | Georg Brandl | 2008-03-29 | 1 | -1/+1 |
| | |||||
* | Be explicit about what efficient means. | Raymond Hettinger | 2008-03-29 | 1 | -2/+2 |
| | |||||
* | Brought documentation for sqlite3 module up-to-date. Fixed Issue1625205 which | Gerhard Häring | 2008-03-29 | 2 | -5/+59 |
| | | | | complained about commit, rollback and close not being documented. | ||||
* | #2502: add example how to do enum types with named tuples. | Georg Brandl | 2008-03-28 | 1 | -0/+10 |
| | |||||
* | Don't use the confusing term "set membership". | Georg Brandl | 2008-03-28 | 1 | -8/+8 |
| | |||||
* | Phase out has_key usage in the tutorial; correct docs for PyMapping_HasKey*. | Georg Brandl | 2008-03-28 | 3 | -10/+7 |
| | |||||
* | Patch #1810 by Thomas Lee, reviewed by myself: | Georg Brandl | 2008-03-28 | 4 | -30/+37 |
| | | | | | allow compiling Python AST objects into code objects in compile(). | ||||
* | Accept patch issue2426 by Paul Kippes (kippesp). | Gregory P. Smith | 2008-03-28 | 1 | -0/+21 |
| | | | | Adds sqlite3.Connection.iterdump to allow dumping of databases. | ||||
* | #2406: add examples to gzip docs. | Georg Brandl | 2008-03-28 | 1 | -8/+41 |
| | |||||
* | #2248: return result of QUIT from quit(). | Georg Brandl | 2008-03-27 | 1 | -1/+6 |
| | |||||
* | Typo: "objects reference count" -> "object's reference count" | Mark Dickinson | 2008-03-26 | 1 | -1/+1 |
| | |||||
* | Add an example for an RFC 822 continuation. | Georg Brandl | 2008-03-26 | 1 | -6/+8 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2008-03-26 | 1 | -17/+78 |
| | |||||
* | #2476: document that %default feature is new in 2.4. | Georg Brandl | 2008-03-25 | 1 | -4/+5 |
| | |||||
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -1/+1 |
| | | | | EOL 80 limit and supply more alternatives in warning messages. | ||||
* | #868845: document <...> reprs. | Georg Brandl | 2008-03-25 | 1 | -5/+9 |
| | |||||
* | Patch #2240: Implement signal.setitimer and signal.getitimer. | Martin v. Löwis | 2008-03-24 | 1 | -7/+60 |
| | |||||
* | #1700821: add a note to audioop docs about signedness of sample formats. | Georg Brandl | 2008-03-24 | 1 | -0/+12 |
| | |||||
* | Tighten documentation for Random.triangular. | Raymond Hettinger | 2008-03-24 | 1 | -5/+5 |
| | |||||
* | Adopt Nick's suggestion for useful default arguments. | Raymond Hettinger | 2008-03-23 | 1 | -1/+6 |
| | | | | Clean-up floating point issues by adding true division and float constants. | ||||
* | Issue 1681432: Add triangular distribution the random module. | Raymond Hettinger | 2008-03-23 | 1 | -0/+4 |
| | |||||
* | Make the doctests presentation-friendlier. | Georg Brandl | 2008-03-23 | 1 | -4/+6 |
| | |||||
* | Simplify demo code. | Raymond Hettinger | 2008-03-23 | 1 | -1/+1 |
| | |||||
* | Enable doctest running for several other documents. | Georg Brandl | 2008-03-22 | 20 | -90/+97 |
| | | | | We have now over 640 doctests that are run with "make doctest". | ||||
* | Enable doctests in functions.rst. Already found two errors :) | Georg Brandl | 2008-03-22 | 1 | -10/+12 |
| | |||||
* | Test doctests in operator docs. | Georg Brandl | 2008-03-22 | 1 | -11/+12 |
| | |||||
* | Test doctests in datetime docs. | Georg Brandl | 2008-03-22 | 1 | -15/+19 |
| | |||||
* | Make collections' doctests executable. | Georg Brandl | 2008-03-22 | 1 | -43/+51 |
| | | | | (The <BLANKLINE>s will be stripped from presentation output.) | ||||
* | Fix-up syntax problems. | Georg Brandl | 2008-03-22 | 1 | -21/+19 |
| | |||||
* | No need to specify explicit "doctest_block" anymore. | Georg Brandl | 2008-03-22 | 3 | -10/+13 |
| | |||||
* | Make more doctests in pprint docs testable. | Georg Brandl | 2008-03-22 | 1 | -17/+12 |
| |