summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect.Jack Jansen2001-01-238-34/+34
|
* more edits to make the text fit (jvr)Just van Rossum2000-10-201-5/+4
|
* oops, that one caused a syntax error... (jvr)Just van Rossum2000-10-201-1/+1
|
* edits to make the 2.0 copyright fit in the about box again... (jvr)Just van Rossum2000-10-201-8/+9
|
* Cleaned uthread dependencies (jvr)Just van Rossum2000-10-201-4/+8
|
* Hm, I never checked in my incomplete "run with interpreter" mods. UI is ↵Just van Rossum2000-10-201-22/+63
| | | | there (but is disabled), functionality is not there.
* fixed 2.0 compat bugJust van Rossum2000-10-201-1/+1
|
* Oops, not only the Popt versions were wrong, the resources were also short.Jack Jansen2000-10-192-0/+0
|
* Updated Popt resources to current versionJack Jansen2000-10-182-0/+0
|
* Removed exceptions from the required modules (it's builtin nowadays)Jack Jansen2000-09-141-2/+2
| | | | Added _winreg to the non-required modules.
* Upped SIZE to 16MB so IDE can run test.autotest (sigh).Jack Jansen2000-09-111-0/+0
|
* How-to document for using Python for CGI scripting. Not complete and ↵Jack Jansen2000-08-251-0/+53
| | | | untested, but I'm checking it in so it won't get lost.
* Moved to unsupported: it never lived up to its expectancies, and for the Mac ↵Jack Jansen2000-08-2010-1931/+0
| | | | all the functionality is available in the IDE.
* a minimal test app to show how to build a standalone app with WJust van Rossum2000-07-011-0/+20
|
* added clearkey = '\033'Just van Rossum2000-07-011-1/+1
|
* fixed bug in comment matchingJust van Rossum2000-07-011-3/+3
|
* Replaced OpenResFile calls with FSpOpenResFile calls (which are ↵Jack Jansen2000-06-207-12/+12
| | | | carbon-compatible).
* Also add a one-line description of the "optional" directive.Jack Jansen2000-06-131-0/+1
|
* Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of ↵Jack Jansen2000-06-071-1/+1
| | | | "if uthread".
* macfsn should always be included, like exceptions and site.Jack Jansen2000-05-171-1/+1
|
* minor tweak (jvr)Just van Rossum2000-04-091-1/+1
|
* added experimental microthread support for use with stackless python -- bw ↵Just van Rossum2000-04-092-13/+77
| | | | compatible (jvr)
* added popup control (jvr)Just van Rossum2000-04-091-4/+60
|