Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add and update itertools recipes. | Raymond Hettinger | 2010-04-02 | 1 | -1/+23 |
| | |||||
* | Document link to Sorting HowTo | Raymond Hettinger | 2010-04-01 | 1 | -0/+3 |
| | |||||
* | A couple small grammar fixes in test.rst, and rewrite the | R. David Murray | 2010-04-01 | 1 | -38/+46 |
| | | | | check_warnings docs to be clearer. | ||||
* | Fix typo | Florent Xicluna | 2010-03-31 | 1 | -1/+1 |
| | |||||
* | Revert r79179 and merge r75584 to explain how to implement a queue using ↵ | Ezio Melotti | 2010-03-31 | 1 | -14/+13 |
| | | | | collection.deque instead of a list. | ||||
* | add inspect.getcallargs, which binds function arguments like a normal call #3135 | Benjamin Peterson | 2010-03-30 | 1 | -0/+26 |
| | | | | Patch by George Sakkis | ||||
* | Backport of weakref.WeakSet and tests from Python 3. | Michael Foord | 2010-03-29 | 1 | -0/+8 |
| | |||||
* | Update itertools recipe for consume(). | Raymond Hettinger | 2010-03-28 | 1 | -1/+7 |
| | |||||
* | Add a note on optimizing the itertools recipes for production. | Raymond Hettinger | 2010-03-28 | 1 | -0/+6 |
| | |||||
* | Update itertools recipes. | Raymond Hettinger | 2010-03-28 | 1 | -7/+28 |
| | |||||
* | Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana. | Brian Curtin | 2010-03-25 | 1 | -173/+176 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2010-03-25 | 1 | -14/+66 |
| | |||||
* | Backported PyCapsule from 3.1, and converted most uses of | Larry Hastings | 2010-03-25 | 5 | -34/+230 |
| | | | | CObject to PyCapsule. | ||||
* | Various edits | Andrew M. Kuchling | 2010-03-24 | 1 | -19/+23 |
| | |||||
* | logging: Updated SysLogHandler documentation. | Vinay Sajip | 2010-03-24 | 1 | -0/+8 |
| | |||||
* | logging: Documentation tweak. | Vinay Sajip | 2010-03-24 | 1 | -2/+2 |
| | |||||
* | logging: Added LOG_FTP for SysLogHandler and updated documentation. | Vinay Sajip | 2010-03-24 | 1 | -0/+71 |
| | |||||
* | Another typo. | Ezio Melotti | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | #8217: typo. | Ezio Melotti | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | add some unittest items | Andrew M. Kuchling | 2010-03-23 | 1 | -13/+20 |
| | |||||
* | Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs | Senthil Kumaran | 2010-03-23 | 1 | -1/+2 |
| | |||||
* | Link specifically to the UCD version 5.2.0. | Ezio Melotti | 2010-03-23 | 1 | -2/+2 |
| | |||||
* | Remove link to objects.rst (gone in r79179). | Ezio Melotti | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | Update the version number of the Unicode Database in a few more places. | Ezio Melotti | 2010-03-22 | 3 | -9/+11 |
| | |||||
* | logging: Added getChild utility method to Logger and added isEnabledFor ↵ | Vinay Sajip | 2010-03-22 | 1 | -0/+15 |
| | | | | method to LoggerAdapter. | ||||
* | Add items | Andrew M. Kuchling | 2010-03-21 | 1 | -5/+30 |
| | |||||
* | Remove leftover word. | Georg Brandl | 2010-03-21 | 1 | -2/+2 |
| | |||||
* | Include structmember.h correctly. | Georg Brandl | 2010-03-21 | 1 | -1/+1 |
| | |||||
* | Update text for newest US DST regulation. The sample file already has the ↵ | Georg Brandl | 2010-03-21 | 1 | -2/+2 |
| | | | | calculation right. | ||||
* | Update os.kill() emulation example for Windows to use ctypes. | Georg Brandl | 2010-03-21 | 1 | -4/+6 |
| | |||||
* | Mention inefficiency of lists as queues, add link to collections.deque ↵ | Georg Brandl | 2010-03-21 | 1 | -0/+5 |
| | | | | discussion. | ||||
* | Clarify that for shell=True, the shell PID will be the child PID. | Georg Brandl | 2010-03-21 | 1 | -0/+3 |
| | |||||
* | Introduce copy by slicing, used in later chapters. | Georg Brandl | 2010-03-21 | 1 | -0/+6 |
| | |||||
* | Document that GzipFile supports iteration. | Georg Brandl | 2010-03-21 | 1 | -1/+1 |
| | |||||
* | Add a paragraph about set displays. | Georg Brandl | 2010-03-21 | 1 | -0/+4 |
| | |||||
* | Remove the "built-in objects" file. It only contained two paragraphs of ↵ | Georg Brandl | 2010-03-21 | 2 | -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 Brandl | 2010-03-21 | 3 | -9/+10 |
| | |||||
* | wrap | Benjamin Peterson | 2010-03-20 | 1 | -2/+2 |
| | |||||
* | document exitfunc fixer | Benjamin Peterson | 2010-03-20 | 1 | -0/+5 |
| | |||||
* | Issue 7832: renaming unittest.TestCase.assertSameElements to ↵ | Michael Foord | 2010-03-20 | 2 | -15/+17 |
| | | | | assertItemsEqual and changing behaviour | ||||
* | Fixing the file call in the rfc822.Message replacement example. | Sean Reifscheider | 2010-03-20 | 1 | -1/+1 |
| | |||||
* | Adding an example of reproducing the rfc822.Message() parsing. | Sean Reifscheider | 2010-03-19 | 2 | -0/+23 |
| | |||||
* | Add support for weak references to code objects. This will be used by an ↵ | Collin Winter | 2010-03-18 | 1 | -2/+2 |
| | | | | | | optimization in the incoming Python 3 JIT. Patch by Reid Kleckner! | ||||
* | #8155: Preserve backward compatibility for test_support.check_warnings(). ↵ | Florent Xicluna | 2010-03-18 | 1 | -50/+53 |
| | | | | Add regression tests. | ||||
* | Issue #8162: logging: Clarified docstring and documentation for disable ↵ | Vinay Sajip | 2010-03-17 | 1 | -1/+5 |
| | | | | function. | ||||
* | #8137: add iso-8859-16 to the standard encodings table. | Georg Brandl | 2010-03-14 | 1 | -2/+4 |
| | |||||
* | Minor documentation updates for xml.etree. | Florent Xicluna | 2010-03-14 | 1 | -12/+14 |
| | |||||
* | Add the keyword argument "method=None" to the .write() method and the ↵ | Florent Xicluna | 2010-03-13 | 1 | -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 Xicluna | 2010-03-13 | 2 | -189/+202 |
| | |||||
* | Update for new download location. | Georg Brandl | 2010-03-13 | 1 | -1/+2 |
| |