Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build | Mark Dickinson | 2009-06-30 | 2 | -0/+10 |
| | | | | failure on HP-UX 11.00. | ||||
* | Issue 6370: Performance issue with collections.Counter(). | Raymond Hettinger | 2009-06-29 | 1 | -2/+4 |
| | |||||
* | Issue 5740: multiprocessing.connection.* authkey fixes | Jesse Noller | 2009-06-29 | 1 | -2/+2 |
| | |||||
* | Bug 5906: add a documentation note for unix daemons vs. multiprocessing daemons | Jesse Noller | 2009-06-29 | 1 | -1/+3 |
| | |||||
* | Fixed 6365: wrong inplace location for build_ext if the extension had dots | Tarek Ziadé | 2009-06-29 | 3 | -7/+22 |
| | |||||
* | Issue #6368: Fixed unused variable warning on Unix. | Hirokazu Yamamoto | 2009-06-29 | 1 | -0/+2 |
| | |||||
* | Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython ↵ | Georg Brandl | 2009-06-29 | 1 | -6/+9 |
| | | | | sprint. | ||||
* | Fixed NEWS. | Hirokazu Yamamoto | 2009-06-29 | 1 | -2/+2 |
| | |||||
* | Backport fix for buglet from py3k | Antoine Pitrou | 2009-06-29 | 1 | -1/+2 |
| | |||||
* | Issue #6344: Fixed a crash of mmap.read() when passed a negative argument. | Hirokazu Yamamoto | 2009-06-29 | 2 | -3/+15 |
| | | | | Reviewed by Amaury Forgeot d'Arc. | ||||
* | Issue #4856: Py_GetFileAttributesEx[AW] are not needed because ↵ | Hirokazu Yamamoto | 2009-06-29 | 1 | -58/+2 |
| | | | | | | | GetFileAttributesEx[AW] won't fail with ERROR_CALL_NOT_IMPLEMENTED on win NT. Reviewed by Amaury Forgeot d'Arc. | ||||
* | update to sphinx 0.6.2 | Benjamin Peterson | 2009-06-29 | 2 | -2/+2 |
| | |||||
* | Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). | Alexandre Vassalotti | 2009-06-29 | 1 | -10/+12 |
| | |||||
* | Remove unused stdint.h includes | Mark Dickinson | 2009-06-28 | 2 | -8/+0 |
| | |||||
* | More Decimal quote fixing; backport of r73642 | Mark Dickinson | 2009-06-28 | 1 | -3/+3 |
| | |||||
* | http://bugs.python.org/issue6267 | Kristján Valur Jónsson | 2009-06-28 | 7 | -72/+408 |
| | | | | Cumulative patch to http and xmlrpc | ||||
* | return locals and cells in get_locals() not bound globals, though | Benjamin Peterson | 2009-06-28 | 2 | -3/+5 |
| | |||||
* | use stack macros | Benjamin Peterson | 2009-06-28 | 1 | -2/+2 |
| | |||||
* | add two generic macros for peeking and setting in the stack | Benjamin Peterson | 2009-06-28 | 1 | -0/+2 |
| | |||||
* | Fix types in logic to compute help file name. | Martin v. Löwis | 2009-06-28 | 1 | -4/+4 |
| | |||||
* | Remove stray pychecker directive. | Georg Brandl | 2009-06-28 | 1 | -4/+0 |
| | |||||
* | Issue #4856: Remove checks for win NT. | Hirokazu Yamamoto | 2009-06-28 | 5 | -354/+277 |
| | |||||
* | Issue 5390: Add uninstall icon independent of whether file | Martin v. Löwis | 2009-06-28 | 2 | -1/+4 |
| | | | | extensions are installed. | ||||
* | Fixed a wrong apostrophe | Ezio Melotti | 2009-06-28 | 1 | -1/+1 |
| | |||||
* | 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 |
| |