Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stmt and setup can contain multiple statements, see #5896 | Ezio Melotti | 2009-06-27 | 1 | -2/+3 |
| | |||||
* | link to extensive generator docs in the reference manual | Benjamin Peterson | 2009-06-27 | 1 | -1/+9 |
| | |||||
* | document is_declared_global() | Benjamin Peterson | 2009-06-26 | 1 | -0/+4 |
| | |||||
* | mark 3.1 as stable docs | Benjamin Peterson | 2009-06-26 | 1 | -2/+2 |
| | |||||
* | Fixes the last problem mentioned in issue1202. | Gregory P. Smith | 2009-06-26 | 1 | -1/+1 |
| | |||||
* | #2016 Fix a crash in function call when the **kwargs dictionary is mutated | Amaury Forgeot d'Arc | 2009-06-25 | 3 | -10/+32 |
| | | | | | | | during the function call setup. This even gives a slight speedup, probably because tuple allocation is faster than PyMem_NEW. | ||||
* | Fix a compilation warning on Windows | Amaury Forgeot d'Arc | 2009-06-25 | 1 | -1/+1 |
| | |||||
* | Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program. | R. David Murray | 2009-06-25 | 1 | -27/+23 |
| | | | | Functionally equivalent, clearer code, English comments. | ||||
* | Add a couple of missing function alias declarations to the turtle docs. | R. David Murray | 2009-06-25 | 1 | -0/+2 |
| | |||||
* | http://bugs.python.org/issue6192 | Kristján Valur Jónsson | 2009-06-24 | 2 | -17/+8 |
| | | | | Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate. | ||||
* | #6332: fix word dupes throughout the source. | Georg Brandl | 2009-06-24 | 7 | -9/+9 |
| | |||||
* | Add procedural note. | Raymond Hettinger | 2009-06-23 | 1 | -0/+3 |
| | |||||
* | Remove last remnants of the ipaddr package. | Amaury Forgeot d'Arc | 2009-06-23 | 2 | -23/+11 |
| | | | | The changes in mcast.py come from the first version of the patch for issue5379. | ||||
* | Issue 6305: Clarify error message for large arguments to itertools.islice(). | Raymond Hettinger | 2009-06-23 | 1 | -3/+3 |
| | |||||
* | Remove the ipaddr module per discussion on python-dev | Amaury Forgeot d'Arc | 2009-06-23 | 5 | -2325/+2 |
| | |||||
* | Issue 6329: Fix iteration for memoryviews. | Raymond Hettinger | 2009-06-23 | 3 | -32/+60 |
| | |||||
* | Fix issue 5230 by having pydoc's safeimport check to see if the import | R. David Murray | 2009-06-23 | 4 | -3/+51 |
| | | | | | error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests. | ||||
* | Remove markup from docstring | Nick Coghlan | 2009-06-23 | 1 | -2/+2 |
| | |||||
* | Issue 6288: Update contextlib.nested() docstring to reflect new documentation | Nick Coghlan | 2009-06-23 | 1 | -10/+8 |
| | |||||
* | remove some unused symtable constants | Benjamin Peterson | 2009-06-23 | 2 | -11/+3 |
| | |||||
* | fix grammar | Benjamin Peterson | 2009-06-23 | 1 | -1/+1 |
| | |||||
* | Improve English phrasing. | R. David Murray | 2009-06-22 | 1 | -1/+1 |
| | |||||
* | #4490 Fix sample code run by "python -m xml.sax.xmlreader" | Amaury Forgeot d'Arc | 2009-06-22 | 1 | -3/+3 |
| | |||||
* | remove tmpname support since it's no longer used | Benjamin Peterson | 2009-06-21 | 3 | -30/+0 |
| | |||||
* | don't need to add the name 'lambda' as assigned | Benjamin Peterson | 2009-06-21 | 1 | -2/+1 |
| | |||||
* | Fix memory bug in bdist_msi. (Commit okayed in issue6319.) | Steven Bethard | 2009-06-21 | 1 | -2/+1 |
| | |||||
* | Issue #6314: logging.basicConfig() performs extra checks on the "level" ↵ | Vinay Sajip | 2009-06-21 | 2 | -1/+8 |
| | | | | argument. | ||||
* | Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to | Guilherme Polo | 2009-06-21 | 3 | -31/+50 |
| | | | | | Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly. | ||||
* | Fixed #6164 AIX specific linker argument in Distutils unixcompiler | Tarek Ziadé | 2009-06-20 | 3 | -16/+28 |
| | |||||
* | use closures | Benjamin Peterson | 2009-06-19 | 1 | -3/+3 |
| | |||||
* | show that this one isn't used | Benjamin Peterson | 2009-06-19 | 1 | -1/+1 |
| | |||||
* | add missing assertion #6313 | Benjamin Peterson | 2009-06-19 | 1 | -0/+1 |
| | |||||
* | remove duplicate test | Benjamin Peterson | 2009-06-19 | 1 | -9/+0 |
| | |||||
* | Issue #6274. Fixed a potential FD leak in subprocess.py. | Facundo Batista | 2009-06-19 | 2 | -82/+92 |
| | |||||
* | #6189: The subprocess.py module should be kept compatible with python 2.2 | Amaury Forgeot d'Arc | 2009-06-18 | 2 | -3/+14 |
| | | | | | (On windows, you still have to change one line to use pywin32 instead of the _subprocess helper module) | ||||
* | #6276: Remove usage of nested() in favor of new with statement with multiple ↵ | Georg Brandl | 2009-06-18 | 1 | -3/+3 |
| | | | | managers. | ||||
* | Issue 6288: update the contextlib.nested() docs to explain why it has been ↵ | Nick Coghlan | 2009-06-17 | 1 | -11/+28 |
| | | | | deprecated and should generally be avoided | ||||
* | #6255: document PyInt_FromSize_t. | Georg Brandl | 2009-06-17 | 1 | -0/+9 |
| | |||||
* | #6295: clarify blocking behavior of getch(). | Georg Brandl | 2009-06-17 | 1 | -1/+2 |
| | |||||
* | Issue #6215: Fixed to use self.open() instead of open() or io.open(). | Hirokazu Yamamoto | 2009-06-17 | 1 | -18/+18 |
| | |||||
* | remove unused 'encoding' member from the compiler struct | Benjamin Peterson | 2009-06-17 | 1 | -4/+0 |
| | |||||
* | Add usage note. | Raymond Hettinger | 2009-06-17 | 1 | -0/+4 |
| | |||||
* | add underscores | Benjamin Peterson | 2009-06-16 | 1 | -2/+2 |
| | |||||
* | Acknowledge the role of the MPFR library in creating cmath_testcases.txt | Mark Dickinson | 2009-06-16 | 1 | -0/+10 |
| | |||||
* | Remove unused macro. | Georg Brandl | 2009-06-16 | 1 | -1/+0 |
| | |||||
* | Add tabularcolumns directive for tables with bullet lists in them. | Georg Brandl | 2009-06-16 | 1 | -0/+6 |
| | |||||
* | starting distutils.ccompiler test coverage and cleanup | Tarek Ziadé | 2009-06-16 | 2 | -22/+57 |
| | |||||
* | Fixed #6287: documentation for the license field in distutils | Tarek Ziadé | 2009-06-16 | 2 | -0/+11 |
| | |||||
* | don't mask encoding errors when decoding a string #6289 | Benjamin Peterson | 2009-06-16 | 3 | -4/+15 |
| | |||||
* | Issue #6286: distutils upload command now uses urllib2 | Tarek Ziadé | 2009-06-15 | 3 | -62/+55 |
| |