- 07 Mar, 2000 13 commits
-
-
Jeremy Hylton authored
standard usage is now from IdleConf import idleconf replace : with = in config.txt
-
Guido van Rossum authored
and output windows) so that it if it doesn't succeed with the line at the cursor, it tries the line before that. This is handy with tracebacks, where my natural tendency is to click in the displayed source line rather than in the file/line indicator just above it. Now I can indulge this tendency. I factored out a helper and changed the error handling so that a non-existing file is treated as if the line didn't match -- this is handy because some function calls (e.g. "foo.bar(1)") match the grep pattern.
-
Guido van Rossum authored
PySequence_Contains() now that string objects have this code in their tp_contains.
-
Guido van Rossum authored
here. [Patch modified by GvR to keep the original exception.]
-
Guido van Rossum authored
non-char in string.
-
Guido van Rossum authored
The (relatively) new chunk module uses seek, not setpos. One instance of the call still needed to be fixed.
-
Guido van Rossum authored
Also removed a bunch of items
-
Guido van Rossum authored
cursor, erase that whitespace first. This avoids a particularly confusing case where hitting Return at the end of the command didn't do what it was expected to do -- because it wasn't considered to be at the end of the command. Now it is.
-
Fred Drake authored
-
Greg Ward authored
changed 'copy_file()' to use the native Mac file copy routine.
-
Greg Ward authored
-
Greg Ward authored
slashes, and put back together again using the local directory separator.
-
Greg Ward authored
in a rather half-assed, but probably effective, way.
-
- 06 Mar, 2000 20 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
When you set a breakpoint on a function with a multi-line argument list, the breakpoint is actually set on the second line of the arguments instead of the first line of the body. This patch fixes that.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
fix imports remove parse functions and visitor code track name change: Classdef to Class add some comments and tweak order of visitXXX methods get rid of if __name__ == "__main__ section
-
Jeremy Hylton authored
import some useful functions from contained modules
-
Jeremy Hylton authored
-
Jeremy Hylton authored
that are internally converted to chars, rather than taking a string.
-
Jeremy Hylton authored
add doc string to transformer module add two helper functions: parse(buf) -> AST parseFile(path) -> AST
-
Jeremy Hylton authored
-
Guido van Rossum authored
complicated to copy in-line here.
-
Jack Jansen authored
used for delta-t values by quicktime).
-
Barry Warsaw authored
few other paths through the function that leaked).
-
Guido van Rossum authored
-
Guido van Rossum authored
before 1.6 is out so it has to be compatible with 1.5.2.
-
Greg Ward authored
simpler implementation.
-
Greg Ward authored
implement it (so far): * moved filename generation methods into CCompiler base class, driven by data supplied by implementation classes * moved a bunch of common code from UnixCCompiler to convenience methods in CCompiler * overhauled MSVCCompiler's compile/link methods to look and act as much as possible like UnixCCompiler's, in order to regularize both interface and behaviour (especially by using those new convenience methods)
-
Greg Ward authored
-
Greg Ward authored
Don't assume that the 'libraries' and 'library_dirs' elements of the build info dict are always lists.
-
- 03 Mar, 2000 7 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
idle.py: Load the config files before anything else happens XXX Need to define standard way to get files relative to the IDLE install dir PyShell.py: ColorDelegator.py: Get color defns out of IdleConf instead of IdlePrefs EditorWindow.py: Replace hard-coded font & window size with config options Get extension names via IdleConf.getextensions extend.py: Obsolete. Extensions defined in config file. ParenMatch.py: Use config file for extension options. Revise comment about parser requirements. Simplify logic on find returning None.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jack Jansen authored
inadvertantly seen as out-only.
-
Jack Jansen authored
pixmap data. Added an as_GrafPort() method to be able to use a GWorld as argument to routines that expect a GrafPort.
-