Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The class for regexes isn't called RegexObject any more; correct the text | Andrew M. Kuchling | 2009-06-01 | 1 | -14/+14 |
| | |||||
* | Issue 3848: document the fact that epoll register raises an IOError if | R. David Murray | 2009-05-31 | 1 | -0/+5 |
| | | | | | an fd is registered twice, and add some additional epoll tests. Patch by Christian Heimes. | ||||
* | Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running | Antoine Pitrou | 2009-05-31 | 1 | -0/+6 |
| | | | | regression tests in parallel, shortening the total runtime. | ||||
* | Fix markup. | Georg Brandl | 2009-05-31 | 1 | -6/+3 |
| | |||||
* | fix signature | Benjamin Peterson | 2009-05-31 | 1 | -1/+1 |
| | |||||
* | Add more examples to the ipaddr documentation. | Gregory P. Smith | 2009-05-30 | 1 | -2/+90 |
| | |||||
* | Rewrap a few long lines. | Georg Brandl | 2009-05-30 | 1 | -35/+38 |
| | |||||
* | Fix markup problem. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | Fix some more small markup problems. | Georg Brandl | 2009-05-30 | 1 | -5/+5 |
| | |||||
* | Use preferred form of raising exceptions. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | #6146: fix markup bug. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | no fdatasync on macos | Benjamin Peterson | 2009-05-30 | 1 | -0/+3 |
| | |||||
* | Move the basic examples section back to the beginning. | Raymond Hettinger | 2009-05-29 | 1 | -63/+67 |
| | |||||
* | Add test discovery to unittest. Issue 6001. | Michael Foord | 2009-05-29 | 1 | -14/+153 |
| | |||||
* | Issue 6141: document that the first item of args is still the | R. David Murray | 2009-05-29 | 1 | -3/+6 |
| | | | | command name even when executable is specified. | ||||
* | Deprecate contextlib.nested(). The with-statement now provides this ↵ | Raymond Hettinger | 2009-05-29 | 1 | -0/+2 |
| | | | | functionality directly. | ||||
* | switch library reference and language reference | Benjamin Peterson | 2009-05-28 | 1 | -2/+2 |
| | |||||
* | Fix field name conflicts for named tuples. | Raymond Hettinger | 2009-05-27 | 1 | -6/+6 |
| | |||||
* | #6112: list.remove raises ValueError, not RuntimeError. | Georg Brandl | 2009-05-26 | 1 | -1/+1 |
| | |||||
* | Allow multiple context managers in one with statement, as proposed | Georg Brandl | 2009-05-25 | 1 | -2/+18 |
| | | | | | | | in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics. | ||||
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 2 | -1/+15 |
| | | | | | It speeds up the with statement and correctly looks up the special methods involved. | ||||
* | make class skipping decorators the same as skipping every test of the class | Benjamin Peterson | 2009-05-25 | 1 | -21/+5 |
| | | | | This removes ClassTestSuite and a good bit of hacks. | ||||
* | add a versionadded tag for set_tunnel | Gregory P. Smith | 2009-05-24 | 1 | -0/+2 |
| | |||||
* | Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. | Senthil Kumaran | 2009-05-24 | 1 | -0/+6 |
| | |||||
* | Issue #6042: | Jeffrey Yasskin | 2009-05-23 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | lnotab-based tracing is very complicated and isn't documented very well. There were at least 3 comment blocks purporting to document co_lnotab, and none did a very good job. This patch unifies them into Objects/lnotab_notes.txt which tries to completely capture the current state of affairs. I also discovered that we've attached 2 layers of patches to the basic tracing scheme. The first layer avoids jumping to instructions that don't start a line, to avoid problems in if statements and while loops. The second layer discovered that jumps backward do need to trace at instructions that don't start a line, so it added extra lnotab entries for 'while' and 'for' loops, and added a special case for backward jumps within the same line. I replaced these patches by just treating forward and backward jumps differently. | ||||
* | remove mention of old ctypes version | Benjamin Peterson | 2009-05-23 | 1 | -2/+1 |
| | |||||
* | #6086: fix spelling and use a better exception to catch. | Georg Brandl | 2009-05-22 | 2 | -6/+6 |
| | |||||
* | Correction in softspace behavior description. | Georg Brandl | 2009-05-22 | 1 | -3/+4 |
| | |||||
* | s/use/call/ | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Fix confusing wording. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Fix references to file-related functions and methods (os.* vs file.*). | Georg Brandl | 2009-05-22 | 1 | -15/+15 |
| | |||||
* | #6084: fix example. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Use raise X(y). | Georg Brandl | 2009-05-22 | 1 | -3/+3 |
| | |||||
* | don't use subprocess.call with PIPEs as the child can fill the pipe buf and | Philip Jenvey | 2009-05-22 | 1 | -0/+10 |
| | | | | | deadlock. add a warning to subprocess docs about this, similar to Popen.wait's. refs http://bugs.jython.org/issue1351 | ||||
* | Fix-up moving average example. | Raymond Hettinger | 2009-05-22 | 1 | -5/+3 |
| | |||||
* | #6051: refer to email examples for better way to construct email messages. | Georg Brandl | 2009-05-20 | 2 | -0/+7 |
| | |||||
* | #6055: refer to "sqlite3" consistently. | Georg Brandl | 2009-05-20 | 2 | -13/+16 |
| | |||||
* | Note that ordered dictionaries work with reversed(). | Raymond Hettinger | 2009-05-19 | 1 | -0/+3 |
| | |||||
* | chop off slash | Benjamin Peterson | 2009-05-17 | 1 | -1/+1 |
| | |||||
* | ignore .rst files in sphinx its self | Benjamin Peterson | 2009-05-17 | 1 | -0/+3 |
| | |||||
* | #5935: mention that BROWSER is looked for in PATH. | Georg Brandl | 2009-05-17 | 1 | -1/+6 |
| | |||||
* | #5942: Copy over flag table from dbm.rst which is clearer. | Georg Brandl | 2009-05-17 | 1 | -11/+25 |
| | |||||
* | #6017: better document behavior of dictiterators when the dict is changed. | Georg Brandl | 2009-05-17 | 1 | -3/+4 |
| | |||||
* | part of #4144: fix exception message in console session. | Georg Brandl | 2009-05-17 | 1 | -2/+2 |
| | |||||
* | Fix about and bugs pages to match real workflow. | Georg Brandl | 2009-05-16 | 2 | -3/+7 |
| | |||||
* | #2856: document 2.x os.listdir() behavior for undecodable filenames. | Georg Brandl | 2009-05-16 | 1 | -1/+2 |
| | |||||
* | #6009: undocument default argument of Option as deprecated. | Georg Brandl | 2009-05-16 | 1 | -2/+2 |
| | |||||
* | #6025: fix signature of parse(). | Georg Brandl | 2009-05-16 | 1 | -1/+1 |
| | |||||
* | #6034: clarify __reversed__ doc. | Georg Brandl | 2009-05-16 | 1 | -5/+5 |
| | |||||
* | Fix example output for doctest-like demos. | Georg Brandl | 2009-05-15 | 1 | -6/+6 |
| |