- 15 Jan, 2003 3 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Raymond Hettinger authored
and unicode Patch by Christopher Blunck.
-
- 14 Jan, 2003 6 commits
-
-
Mark Hammond authored
Ensure that the 'size' arg is correctly passed to the encoding reader to prevent buffer overflows.
-
Kurt B. Kaiser authored
Configuration implementation.
-
Kurt B. Kaiser authored
M EditorWindow.py M NEWS.txt M config-main.def M configDialog.py M configHandler.py M configHelpSourceEdit.py M configSectionNameDialog.py - Change default: IDLE now starts with Python Shell. - Removed the File Path from the Additional Help Sources scrolled list. - Add capability to access Additional Help Sources on the web if the Help File Path begins with //http or www. (Otherwise local path is validated, as before.) - Additional Help Sources were not being posted on the Help menu in the order entered. Implement sorting the list by [HelpFiles] 'option' number. - Add Browse button to New Help Source dialog. Arrange to start in Python/Doc if platform is Windows, otherwise start in current directory. - Put the Additional Help Sources directly on the Help menu instead of in an Extra Help cascade menu. Rearrange the Help menu so the Additional Help Sources come last. Update help.txt appropriately. - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
-
Guido van Rossum authored
is not supported on sets. (Unfortunately, sorting a list of sets may still return random results because it uses < exclusively, but for sets that inly implements a partial ordering. Oh well.)
-
Raymond Hettinger authored
The two are semantically equivalent, but the first triggered a compiler warning about an unused variable. Note, the preceding steps had already accessed and decreffed the variable so the reference counts were fine.
-
Raymond Hettinger authored
inspect.getsource would crash with one line definitions like: def f(x): return x or f = lambda x: x
-
- 13 Jan, 2003 10 commits
-
-
Just van Rossum authored
-
Tim Peters authored
managed to delete the @test file it intended to delete. Also, I don't see a reason to create a 4MB file in the new test, so cut it back to 16K.
-
Guido van Rossum authored
This was introduced in 1998 in rev. 1.13, where I imported extensive patches that, I am sad to say, I didn't review as carefully as I should have.
-
Guido van Rossum authored
do_quit() -- but print a blank line first.
-
Neal Norwitz authored
Fix infinite recursion which occurred when printing an object whose __str__() returned self. Will backport
-
Andrew M. Kuchling authored
C API section by mistake
-
Neal Norwitz authored
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
Mention deprecation of string exceptions
-
Raymond Hettinger authored
'%s' % u'x' return a unicode object.
-
- 12 Jan, 2003 3 commits
-
-
Jack Jansen authored
-
Neal Norwitz authored
-
Neal Norwitz authored
The interpreter doesn't crash, but it does call exit() in libncurses. Add a note to this effect. Will backport
-
- 11 Jan, 2003 3 commits
-
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
HASTZINFO() macro.
-
- 10 Jan, 2003 15 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
Add the optional gain parameter and pass it to Tk.
-
Neal Norwitz authored
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
When a module doesn't have a __path__ attribute, trigger a dialog box rather than dumping a traceback to the console. Synch to Python IDLE.
-
Neal Norwitz authored
Closing an mmap'ed file (calling munmap) twice on Solaris caused a core dump.
-
Neal Norwitz authored
Closing an mmap'ed file (calling munmap) twice on Solaris caused a core dump. Will backport.
-
Kurt B. Kaiser authored
M configHelpSourceEdit.py 1. Attach configHelpSourceEdit error dialogs to parent to avoid Tk root pop-ups. 2. Make configHelpSourceEdit OK button the default and bind <Return>. 3. Reformat configHelpSourceEdit. 4. ConfigDialog.SaveAllChangedConfig() had a bug which caused additional help sources to be deleted when other config items were changed. 4. Uniform capitalization in configDialog. 5. Update configDialog doc string.
-
Barry Warsaw authored
hard code it. We want this module to work with Python 2.1 for now.
-
Barry Warsaw authored
-
Raymond Hettinger authored
parameter being either four or five. Currently, compile.c does not generate calls with a parameter higher than three. May have to be reverted if the second alpha or beta shakes out some other tool generating this op code with a parameter of four or five.
-
Neal Norwitz authored
when a string exception is raised. Note that raising string exceptions is deprecated in an exception message.
-
Neal Norwitz authored
-
Neal Norwitz authored
Change a couple of list -> mylist
-
Raymond Hettinger authored
Clarified that not all types are included. The OP was looking for a StaticMethodType. Also, added a note and example suggesting the use of int,str, etc. instead of IntType, StrType, etc. Renamed the crummy variable name in the example from "list" to "mylist".
-