Commit graph

42500 commits

Author SHA1 Message Date
Benjamin Peterson
8f7b94eae9 use stack macros 2009-06-28 16:14:07 +00:00
Benjamin Peterson
b8338ab92c add two generic macros for peeking and setting in the stack 2009-06-28 16:08:02 +00:00
Martin v. Löwis
741e6998f8 Fix types in logic to compute help file name. 2009-06-28 12:24:23 +00:00
Georg Brandl
a4c622972a Remove stray pychecker directive. 2009-06-28 12:10:18 +00:00
Hirokazu Yamamoto
a3c5609079 Issue #4856: Remove checks for win NT. 2009-06-28 10:23:00 +00:00
Martin v. Löwis
ecb4f953dd Issue 5390: Add uninstall icon independent of whether file
extensions are installed.
2009-06-28 09:32:39 +00:00
Ezio Melotti
b4ad395d07 Fixed a wrong apostrophe 2009-06-28 00:07:45 +00:00
Ezio Melotti
1dfd5d9f78 stmt and setup can contain multiple statements, see #5896 2009-06-27 23:45:39 +00:00
Benjamin Peterson
00a58c3574 link to extensive generator docs in the reference manual 2009-06-27 14:16:23 +00:00
Benjamin Peterson
f36bebd06f document is_declared_global() 2009-06-26 23:37:06 +00:00
Benjamin Peterson
f511fcc743 mark 3.1 as stable docs 2009-06-26 16:49:06 +00:00
Gregory P. Smith
2662733bce Fixes the last problem mentioned in issue1202. 2009-06-26 07:50:21 +00:00
Amaury Forgeot d'Arc
595f7a5bf9 #2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.

This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.
2009-06-25 22:29:29 +00:00
Amaury Forgeot d'Arc
ca69bb90cb Fix a compilation warning on Windows 2009-06-25 21:29:32 +00:00
R. David Murray
1666f19317 Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program.
Functionally equivalent, clearer code, English comments.
2009-06-25 17:29:39 +00:00
R. David Murray
5c3d40e0f3 Add a couple of missing function alias declarations to the turtle docs. 2009-06-25 14:21:06 +00:00
Kristján Valur Jónsson
f1d11efb72 http://bugs.python.org/issue6192
Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.
2009-06-24 09:17:04 +00:00
Georg Brandl
5a85d5c4f2 #6332: fix word dupes throughout the source. 2009-06-24 06:41:19 +00:00
Raymond Hettinger
6c860f97d7 Add procedural note. 2009-06-23 22:20:04 +00:00
Amaury Forgeot d'Arc
388637d373 Remove last remnants of the ipaddr package.
The changes in mcast.py come from the first version of the patch for issue5379.
2009-06-23 21:53:46 +00:00
Raymond Hettinger
0115e098da Issue 6305: Clarify error message for large arguments to itertools.islice(). 2009-06-23 21:32:28 +00:00
Amaury Forgeot d'Arc
14fc673d4f Remove the ipaddr module per discussion on python-dev 2009-06-23 21:09:09 +00:00
Raymond Hettinger
62641e9534 Issue 6329: Fix iteration for memoryviews. 2009-06-23 20:59:43 +00:00
R. David Murray
ef087da9e7 Fix issue 5230 by having pydoc's safeimport check to see if the import
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.
2009-06-23 18:02:46 +00:00
Nick Coghlan
3a1dbb05a1 Remove markup from docstring 2009-06-23 10:51:02 +00:00
Nick Coghlan
0d8b4e33e7 Issue 6288: Update contextlib.nested() docstring to reflect new documentation 2009-06-23 10:19:30 +00:00
Benjamin Peterson
94819cf47c remove some unused symtable constants 2009-06-23 03:01:56 +00:00
Benjamin Peterson
1a4ceb2f4b fix grammar 2009-06-23 01:18:57 +00:00
R. David Murray
4ee6d25b18 Improve English phrasing. 2009-06-22 22:11:04 +00:00
Amaury Forgeot d'Arc
e71bd81a89 #4490 Fix sample code run by "python -m xml.sax.xmlreader" 2009-06-22 19:33:48 +00:00
Benjamin Peterson
d9920c255d remove tmpname support since it's no longer used 2009-06-21 23:03:36 +00:00
Benjamin Peterson
f67caf8523 don't need to add the name 'lambda' as assigned 2009-06-21 23:01:07 +00:00
Steven Bethard
35fad2fc48 Fix memory bug in bdist_msi. (Commit okayed in issue6319.) 2009-06-21 21:03:41 +00:00
Vinay Sajip
603fb6d667 Issue #6314: logging.basicConfig() performs extra checks on the "level" argument. 2009-06-21 17:37:27 +00:00
Guilherme Polo
7f146ab0ca Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to
Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of
test_ttkguionly.
2009-06-21 17:22:50 +00:00
Tarek Ziadé
439bf93f8c Fixed #6164 AIX specific linker argument in Distutils unixcompiler 2009-06-20 13:57:20 +00:00
Benjamin Peterson
dae5db2805 use closures 2009-06-19 22:21:12 +00:00
Benjamin Peterson
5fa09e3eb5 show that this one isn't used 2009-06-19 22:16:28 +00:00
Benjamin Peterson
9c5e4115ab add missing assertion #6313 2009-06-19 22:09:17 +00:00
Benjamin Peterson
f1cccaa6b2 remove duplicate test 2009-06-19 22:07:47 +00:00
Facundo Batista
8c826b77e0 Issue #6274. Fixed a potential FD leak in subprocess.py. 2009-06-19 18:02:28 +00:00
Amaury Forgeot d'Arc
5fe420e34c #6189: The subprocess.py module should be kept compatible with python 2.2
(On windows, you still have to change one line to use pywin32
instead of the _subprocess helper module)
2009-06-18 22:32:50 +00:00
Georg Brandl
c29863e3a6 #6276: Remove usage of nested() in favor of new with statement with multiple managers. 2009-06-18 22:24:26 +00:00
Nick Coghlan
7c2bc8308c Issue 6288: update the contextlib.nested() docs to explain why it has been deprecated and should generally be avoided 2009-06-17 12:12:15 +00:00
Georg Brandl
476849c185 #6255: document PyInt_FromSize_t. 2009-06-17 09:43:31 +00:00
Georg Brandl
2fcf389e10 #6295: clarify blocking behavior of getch(). 2009-06-17 09:36:21 +00:00
Hirokazu Yamamoto
cdcd4bff12 Issue #6215: Fixed to use self.open() instead of open() or io.open(). 2009-06-17 07:05:33 +00:00
Benjamin Peterson
5ecf57adcf remove unused 'encoding' member from the compiler struct 2009-06-17 03:23:04 +00:00
Raymond Hettinger
3a02624059 Add usage note. 2009-06-17 01:43:47 +00:00
Benjamin Peterson
bf9ec9ba67 add underscores 2009-06-16 23:13:09 +00:00