summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
Commit message (Collapse)AuthorAgeFilesLines
* a whole bunch of OSX tweaksJust van Rossum2001-11-1810-69/+105
|
* Rewritten the List Definition for the traceback window in Python,Just van Rossum2001-11-051-9/+112
| | | | which makes it work under Carbon. Next stop: the object browser.
* macdinkingJust van Rossum2001-11-022-10/+9
|
* use 32bit APIs for control values, refactor slightlyJust van Rossum2001-11-021-42/+28
|
* use proper APIs for activate/deactivateJust van Rossum2001-11-021-17/+5
|
* wintertime bluesJust van Rossum2001-11-021-0/+0
|
* removed import display hackeryJust van Rossum2001-11-022-66/+5
|
* some support for syntax coloring, disabled for nowJust van Rossum2001-11-022-42/+149
|
* changed the default fontJust van Rossum2001-11-021-1/+1
|
* fixed a non-Carbon Carbon importJust van Rossum2001-11-021-1/+1
|
* - rearranged some importsJust van Rossum2001-11-021-29/+3
| | | | | | - removed default button drawing code: this doesn't work well under OSX. Needs to be replaced by SetWindowDefaultButton() calls, once we have those.
* rearranged some importsJust van Rossum2001-11-024-23/+8
|
* call the correct base method (found due to better inheritance checking in 2.2)Just van Rossum2001-10-311-1/+1
|
* Fixed old bug (caused by careless Carbonizing) that noone noticed untilJust van Rossum2001-09-241-1/+1
| | | | this week (apparently me and Bob Heeter at more or less the same time).
* Patch by Mark Day to allow from __future__ imports. Looks harmlessJack Jansen2001-09-071-3/+5
| | | | | | | enough, but may have side-effects because it preallocates a single codeop.Compiler() to compile all statements the user enters. Just: please review and retract/modify if necessary.
* Updated the Popt resources for the applets to the newest version.Jack Jansen2001-09-013-0/+0
|
* Use the new macresource module to open the accompanying resource file (if ↵Jack Jansen2001-08-272-27/+11
| | | | needed).
* When we're freezing to sourcecode and one of the modules is a dynamic module ↵Jack Jansen2001-08-271-0/+4
| | | | that is in a package we freeze that module at toplevel (outside any package). Not optimal, but there is little more we can do as config.c has no way to specify a builtin module has to be dumped into a package.
* - A forgotten "from Carbon".Jack Jansen2001-08-271-2/+3
| | | | | - Made the "killed unknown window" code dependent on a global var, so you can easily turn the behaviour off for IDE debugging.
* A few forgotten "from Carbon"s.Jack Jansen2001-08-272-2/+2
|
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-2527-90/+95
|
* Temporarily disabled the import hook. It breaks with the package-basedJack Jansen2001-08-191-1/+2
| | | | Carbon and its workaround.
* Show the MacPython IDE version in the interactive banner.Just van Rossum2001-08-061-1/+4
|
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-2/+1
|
* - fixed some re usage, partly so it'll still work when re uses pre insteadJust van Rossum2001-07-104-43/+38
| | | | | of sre, and partly fixing re -> regex porting oversights - fixed PyFontify.py so it actually *works* again..
* - minor cleanup, removed bogus commentsJust van Rossum2001-07-051-9/+13
| | | | | - make method reload handle __private attrs correctly - fixed whole word search
* don't crash when encountering bad marshal dataJust van Rossum2001-07-051-1/+2
|
* don't blow up when the charno SyntaxError value is NoneJust van Rossum2001-06-211-1/+3
|
* repaired expandselection and uncomment breakageJust van Rossum2001-06-211-4/+5
|
* Override bdb's canonic() method with a no-op: with bdb's version we couldn't ↵Just van Rossum2001-06-201-0/+5
| | | | edit breakpoints in file-less ("Untitled" script windows). Besides, we did't need it as we always use full path names anyway.
* Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid ↵Just van Rossum2001-06-1914-84/+86
| | | | any further encoding conversion troubles.
* When reading from stdin (with the dialog box) use any partial line onJack Jansen2001-05-261-1/+8
| | | | stdout as the prompt. This makes raw_input() and print "xxx", ; sys.stdin.readline() work a bit more palatable.
* One more macroman<->latin1 conversion victim.Jack Jansen2001-05-231-19/+19
|
* Fixed macroman<->latin1 conversion. Some chars don'tJack Jansen2001-05-174-19/+19
| | | | | exist in latin1, but at least the roundtrip results in the same macroman characters.
* Fixed macroman<->latin1 conversion. Some characters don't exist in latin1, ↵Jack Jansen2001-05-177-25/+25
| | | | | | but at least the roundtrip gives the correct macroman characters again.
* Got module to work under Carbon. Also disabled a few more bits of cfm68k ↵Jack Jansen2001-03-201-12/+21
| | | | support.
* Added riscos modules to modules that don't have to be included.Jack Jansen2001-03-201-1/+3
|
* Added QDFlushPortBuffer calls.Jack Jansen2001-03-151-0/+2
|
* Import kOnSystemDisk from MACFSJack Jansen2001-03-151-2/+1
|
* Default waittime in the eventloop is now None. At low level it will then be ↵Jack Jansen2001-03-081-2/+2
| | | | set to GetCaretTime().
* Handle the ReopenApplication event (by ignoring it).Jack Jansen2001-03-081-0/+2
|
* Silly typo which caused the stack browser to crash.Jack Jansen2001-03-011-1/+1
|
* Added Popt resource for "dont show console"Jack Jansen2001-02-273-0/+0
| | | | Changed SIZE resource to be carbon-compatible.
* Waste 2.0 has many more options for the undo label.Jack Jansen2001-02-211-2/+6
|
* Use re in stead of regex, so we get rid of the annoying warning during startup.Jack Jansen2001-02-215-47/+54
|
* Get rid of from ... import *Jack Jansen2001-02-091-5/+5
|
* Use FSpCreateResFile() in stead of CreateResFile().Jack Jansen2001-01-291-1/+2
|
* Use CountMenuItems() in stead of CountMItems().Jack Jansen2001-01-291-1/+1
|
* Replace {Enable,Disable,Check}Item with their carbon-compatible equivalents ↵Jack Jansen2001-01-293-7/+7
| | | | {Enable,Disable,Check}MenuItem.
* Sigh... First test before committing. InvalWindowRect and friends are window ↵Jack Jansen2001-01-238-35/+39
| | | | object methods. Fixed.