summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE/PyEdit.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 46607-46608 via svnmerge fromThomas Wouters2006-06-081-1360/+0
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r46607 | neal.norwitz | 2006-06-03 06:49:00 +0200 (Sat, 03 Jun 2006) | 1 line Remove Mac OS 9 support (http://mail.python.org/pipermail/python-dev/2006-June/065538.html) ........ r46608 | martin.v.loewis | 2006-06-03 09:37:13 +0200 (Sat, 03 Jun 2006) | 2 lines Port to OpenBSD 3.9. Patch from Aldo Cortesi. ........
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-171-3/+1
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-1279/+1279
|
* Fix for #860242: use correct names in the "save preferences" dialog.Jack Jansen2004-06-031-3/+3
|
* - Fix for #862941: "run with commandline python" crashed. Fixed.Jack Jansen2004-06-031-2/+5
| | | | - Prefer to use pythonw (if it exists) for "run with commandline python".
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-6/+6
| | | | From SF patch #852334.
* Fix for [ 782686 ]: new files used \r as the default line separatorJust van Rossum2003-11-181-13/+8
| | | | instead of os.linesep.
* add explicit support for cancelling a running script (CFM-based MacPython ↵Just van Rossum2003-05-091-2/+25
| | | | had this built-in)
* more dead code removalJust van Rossum2003-05-091-32/+2
|
* dead code removalJust van Rossum2003-05-091-33/+6
|
* Fix for #731643: allow "lookup in documentation" to also work if theJack Jansen2003-05-061-0/+3
| | | | interactive window is frontmost.
* Added an "Open Recent" command. Fixes 607810.Jack Jansen2003-02-251-0/+6
|
* Checking mac-specific stuff from the 2.3a2 branch in on the trunk.Jack Jansen2003-02-211-1/+1
|
* When building an applet clear out the tempfile and dir afterwards.Jack Jansen2003-02-161-0/+5
|
* Create applets slightly differently: by saving the sourcecode to aJack Jansen2003-02-121-1/+11
| | | | | temporary location. This is needed to makethings work with the new buildtools based on bundlebuilder.
* Got rid of macfs and FSSpecs in general (pathnames or FSRefs are nowJack Jansen2003-02-061-19/+14
| | | | used everywhere).
* Use new file dialogs.Jack Jansen2003-01-261-11/+7
|
* 'Replace all' in the find dialog didn't properly update the text view (it ↵Just van Rossum2002-10-241-5/+1
| | | | used to, though...). Fixed.
* minor fixes, removed obsolete warningJust van Rossum2002-07-121-10/+3
|
* Added a "run with commandline Python" flag. Works in MachoPython, should workJack Jansen2002-03-311-12/+54
| | | | | in OSX MacPython (untested), and should be disabled/removed in OS9 (but that doesn't happen yet).
* repair damage: canceling the "save options" dialog now works again.Just van Rossum2002-03-291-4/+3
|
* Completely revamped newline handling. PyEdit is now newline-preservingJack Jansen2002-03-291-20/+55
| | | | | | | | | (if a single newline convention is used in the sourcefile), and the "save options" has a newline style radio button. The creator radio button also has the new choices PythonW and None. Just: just shout (and revert) if you don't agree.
* Added minimal support for floating windows.Just van Rossum2002-02-041-1/+7
|
* Changes by Donovan Preston (and a few minor ones by me) to make IDE run underJack Jansen2002-01-211-2/+4
| | | | | | | | MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope.
* a whole bunch of OSX tweaksJust van Rossum2001-11-181-4/+5
|
* macdinkingJust van Rossum2001-11-021-4/+4
|
* some support for syntax coloring, disabled for nowJust van Rossum2001-11-021-7/+12
|
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-251-5/+5
|
* 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-101-2/+2
| | | | | 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
* Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid ↵Just van Rossum2001-06-191-23/+19
| | | | any further encoding conversion troubles.
* One more macroman<->latin1 conversion victim.Jack Jansen2001-05-231-19/+19
|
* Use re in stead of regex, so we get rid of the annoying warning during startup.Jack Jansen2001-02-211-19/+23
|
* Use FSpCreateResFile() in stead of CreateResFile().Jack Jansen2001-01-291-1/+2
|
* Sigh... First test before committing. InvalWindowRect and friends are window ↵Jack Jansen2001-01-231-1/+1
| | | | object methods. Fixed.
* Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect.Jack Jansen2001-01-231-1/+1
|
* 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.
* Replaced OpenResFile calls with FSpOpenResFile calls (which are ↵Jack Jansen2000-06-201-3/+3
| | | | carbon-compatible).
* Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of ↵Jack Jansen2000-06-071-1/+1
| | | | "if uthread".
* added experimental microthread support for use with stackless python -- bw ↵Just van Rossum2000-04-091-10/+68
| | | | compatible (jvr)
* changed the "method find" algorithm so the function/class/method popup menu ↵Just van Rossum1999-12-231-3/+8
| | | | also works with space-indented source files -- jvr
* Minor indentation cleanup -- jvrJust van Rossum1999-10-301-1/+1
|
* Oliver Steele writes:Just van Rossum1999-05-211-2/+20
| | | | | | | """Despite the best intentions of Anarchie and Internet Explorer, I often end up with Python source files (and other text files that I'd like to edit with PythonIDE) that use '\n' instead of '\r' as a line separator (and therefore sh
* - made "Save options..." dialog more generic, so it's also usable from RoboFogJust van Rossum1999-04-221-4/+5
| | | | | - mark file as dirty after changing the creator of the file so we can_save... -- jvr
* added "Save options" menu to popup so users can set the creator of scripts ↵Just van Rossum1999-02-271-0/+56
| | | | -- jvr
* fixed problem with "reloading" sub-sub-modules -- jvrJust van Rossum1999-02-051-3/+4
|
* re-checkin with "ISO-8859 translation" turned on.Just van Rossum1999-02-021-16/+16
|
* better sys.path munging when running scripts -- jvrJust van Rossum1999-02-011-8/+2
|
* First Checked In.Just van Rossum1999-01-301-0/+1126