- 10 Feb, 2005 4 commits
-
-
Fred Drake authored
dateTime.iso8601 elements still unmarshal into xmlrpclib.DateTime objects
-
Andrew M. Kuchling authored
-
Peter Astrand authored
var == None and var != None with var is None and var is not None and type(var) == int with instanceof(var, int) ...as recomended in PEP 8 [1].
-
Raymond Hettinger authored
-
- 09 Feb, 2005 3 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Trent Mick authored
-
- 08 Feb, 2005 5 commits
-
-
Raymond Hettinger authored
-
Walter Dörwald authored
-
Raymond Hettinger authored
* Use += * Replace loop logic with str.splitlines equivalent * Don't use variable names that shadow tuple, list, and str * Use dict.get instead of equivalent try/except * Minor loop logic simplications
-
Fred Drake authored
-
Guido van Rossum authored
-
- 07 Feb, 2005 3 commits
-
-
Raymond Hettinger authored
of a "in" or "not in" test.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 06 Feb, 2005 2 commits
-
-
Raymond Hettinger authored
Inspired by Skip's idea to recognize the throw-away nature of sequences in this context and to transform their type to one with better performance.
-
Raymond Hettinger authored
-
- 05 Feb, 2005 3 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
(John J Lee) Minor code clarification and simplification.
-
Raymond Hettinger authored
-
- 04 Feb, 2005 3 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
If we exit via the break here, we need to set ff_last_lineno or FUTURE_POSSIBLE() will remain true. The bug affected statements containing a variety of expressions, but not all expressions. It has been present since Python 2.2.
-
Walter Dörwald authored
a BOM.
-
- 03 Feb, 2005 6 commits
-
-
Thomas Heller authored
-
Thomas Heller authored
for Python 2.4 caused a segfault when post_install_script was used. The reason was that the file handle passed to PyRun_SimpleFile() was created with MSVCRT.DLL, but Python 2.4 uses MSVCR71.DLL. So, I replaced PyRun_SimpleFile() with PyRun_SimpleString(). The segfault is gone, but the output of the postinstall script doesn't show up, because still freopen() from MSVCRT is used. Already backported.
-
Thomas Heller authored
Already backported.
-
Fred Drake authored
(PyXML bug #1112052)
-
Guido van Rossum authored
-
Kurt B. Kaiser authored
Default remains cyclic. Python Patch 914546 Noam Raphael. M IdleHistory.py M NEWS.txt M config-main.def
-
- 02 Feb, 2005 1 commit
-
-
Steve Holden authored
-
- 31 Jan, 2005 3 commits
-
-
Michael W. Hudson authored
This should go on whatever bugfix branches the other fetches up on.
-
Michael W. Hudson authored
[ 1077106 ] Negative numbers to os.read() cause segfault Sorry for sitting on this for so long! Is there a chance it could make 2.3.5?
-
Kurt B. Kaiser authored
has never worked and no one has complained. It is still possible to set a default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on tabs for the current EditorWindow via the Format menu) but IDLE will encourage indentation via spaces. Enable setting the indentation width using the Options dialog. Bug # 783877 Remove some commented out old code from configDialog.py (related to old methods for invoking the HelpBrowser). M EditorWindow.py M NEWS.txt M configHandler.py
-
- 29 Jan, 2005 2 commits
-
-
Johannes Gijsbers authored
-
Martin v. Löwis authored
Fixes #1110478 and #1100235.
-
- 28 Jan, 2005 1 commit
-
-
Kurt B. Kaiser authored
M EditorWindow.py M NEWS.txt M config-keys.def M configHandler.py
-
- 27 Jan, 2005 2 commits
-
-
Brett Cannon authored
Closes bug #1110998. Thanks Matthew Bogosian.
-
Martin v. Löwis authored
Backported to 2.3 and 2.4.
-
- 26 Jan, 2005 2 commits
-
-
Raymond Hettinger authored
Docs incorrectly stated that maxsplit=0 would cause unlimited splitting.
-
Raymond Hettinger authored
Saves space in the presence of code like: (None,)*10000
-