summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Forward port of 1.12.14.3 (which has an incorrect log message):Jack Jansen2002-10-291-1/+4
| | | | | | | if SetDates() in touched() returns an error ignore it: the user may not have permission to change the parent folder. This is a non-serious problem, the only function of touched() is to speed up the finder seeing the change.
* Under Jaguar it seems that 'errn' return value keyword parameters don'tJack Jansen2002-10-251-0/+8
| | | | | | | | | (or don't always?) show up with missed(). I think this is a bug in Jaguar, but as it is a potential dangerous problem (the OSA event has failed, but the Python code isn't told about this and happily continues) this is a quick workaround. Bugfix candidate, I'll add it to 2.2.2 as a last second fix.
* '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.
* cd to users home dir if no current dir has been set. Fixes bug #625734Just van Rossum2002-10-201-0/+5
|
* make sure the object browser can't crash because when the list data gets ↵Just van Rossum2002-09-161-6/+20
| | | | bigger than 32kB
* add ./ to configure command so it actually works verbatimJust van Rossum2002-09-161-1/+1
|
* Shut up FutureWarnings about hex constants.Jack Jansen2002-09-121-0/+4
|
* Patch by Tony Lownds: build an IDLE applet too, if _tkinter is available.Jack Jansen2002-09-121-1/+21
| | | | I modified the patch to make it a non-fatal error if IDLE isn't built.
* Patch by Tony Lownds: add the Resources directory to sys.path.Jack Jansen2002-09-121-0/+6
|
* Mode rU for universal newlines, not rT. Spotted by Guido.Jack Jansen2002-09-121-2/+2
|
* Pass None to AHGotoPage().Jack Jansen2002-09-111-1/+1
|
* The debugger source view only understood mac-style linefeeds. Fixed.Jack Jansen2002-09-111-2/+3
|
* Converted to Vise 8.Jack Jansen2002-09-111-0/+0
|
* All set for 2.3 installer, except for upgrade of Vise version.Jack Jansen2002-09-101-0/+0
|
* Fixed typo spotted by Whomas Touters.Jack Jansen2002-09-101-1/+1
|
* Added include guards and C++ extern "C" {} constructs. Partial fix for #607253.Jack Jansen2002-09-104-1/+37
| | | | Bugfix candidate.
* Reverted previous change, I was confused.Jack Jansen2002-09-101-1/+1
|
* Next few steps towards a 2.3 installer.Jack Jansen2002-09-071-0/+0
|
* First steps towards a 2.3 installer.Jack Jansen2002-09-065-29/+31
|
* Enable _AH module.Jack Jansen2002-09-062-0/+2
|
* Import Carbon.AH, not Carbon.HelpJack Jansen2002-09-061-1/+1
|
* Reorganized order of help menu, and don't show Carbon documentationJack Jansen2002-09-061-3/+4
| | | | | entries on OS9 (where they are never available, and simply disabling them might lead people to think otherwise).
* Silly me, I enabled the old help module. Fixed.Jack Jansen2002-09-062-2/+3
|
* Added carbon Help module.Jack Jansen2002-09-063-1/+2
|
* Upped the stack size to 256KB. test_class ran afoul of the 64K limit, and ↵Jack Jansen2002-09-062-0/+0
| | | | this is probably a better fix than lowering the recursion limit.
* Updated the notes on building a binary installer.Jack Jansen2002-09-061-2/+15
|
* The script was very sloppy about which variables held source pathnamesJack Jansen2002-09-061-56/+54
| | | | and which held destination pathnames. Fixed.
* Fixed a typo in the binary install notesJack Jansen2002-09-061-66/+72
| | | | rewrapped: as usual with my files everything was far wider than 80 chars.
* Get rid of non-ascii characters.Jack Jansen2002-09-061-4/+4
|
* Use PyString_CHECK_INTERNED.Jack Jansen2002-09-061-3/+3
|
* Started on documentation for building a MacOSX binary installer.Jack Jansen2002-09-061-1/+28
| | | | Unfinished.
* Remove .pyo files too.Jack Jansen2002-09-061-2/+2
|
* Script to generate .pkg packages, donated by Dinu Gherman. This is hisJack Jansen2002-09-061-0/+464
| | | | | original code, it still needs fiddling to make it work in general circumstances.
* Generate pythonw.sh on the fly.Jack Jansen2002-09-021-5/+7
| | | | Use the build python for as many things as possible.
* Pass -x badsyntax to compileall.Jack Jansen2002-09-021-4/+4
| | | | Tweaks to make builds work for non-standard dstroot.
* Implemented the Help menu. The Python manual can be viewed (if installed)Jack Jansen2002-08-311-0/+102
| | | | | | | | and the selection can be looked up, and so can the Carbon manual. From the help menu you can also get to the online documentation, the Python website and the MacPython page. Untested in MacPython-OS9.
* If there's an environment variable PYTHONIDEPATH it points to the IDEJack Jansen2002-08-311-1/+4
| | | | folder. This allows running the IDE from the source tree on OSX.
* MenuID's are signed.Jack Jansen2002-08-311-0/+2
|
* Typecode for AHTOCType was wrong. Fixed.Jack Jansen2002-08-302-2/+2
|
* Initialize self._helpmenu earlier, so we can use gethelpmenu() whileJack Jansen2002-08-301-1/+1
| | | | building the user menus.
* Fix for Jaguar: use ln for installing symlinks, install no longer works.Jack Jansen2002-08-301-2/+2
| | | | Fix for sh: use : in stead of an empty then clause in an if.
* On Jaguar the default mode for files in the installed product is 444 (or 555)Jack Jansen2002-08-301-0/+1
| | | | | in stead of 644 (755). This makes a subsequent install fail. Changed the INSTALL_MODE_FLAG to fix this.
* Added support for the help menu. Application.gethelpmenu() will returnJack Jansen2002-08-291-0/+35
| | | | | | | it. Also fixed menu IDs to be signed in do_menudispatch. this is an incompatible change, but I don't think it'll hurt anyone.
* Revived the Carbon.Help module, but implementing the MacHelp API in steadJack Jansen2002-08-295-269/+148
| | | | | of the defunct Balloons API. Help tags are TBD, but at least this gives us access to the help menu.
* Don't copy the documentation when using Python.app as an applet template.Jack Jansen2002-08-291-0/+1
|
* Distutils-based script by Bill Fancher to download the Python documentationJack Jansen2002-08-281-0/+166
| | | | | | HTML tarball and use it to create a documentation tree readable and searchable with Apple Help Viewer. The documentation also shows up in Project Builder (if you add Python.framework to your project).
* - Install a symlink to the documentation (which lives in the framework)Jack Jansen2002-08-283-3/+14
| | | | | | in Python.app, and refer to it in Info.plist. This makes Apple Help Viewer recognize the Python documentation. - Changed the externally visible name of Python.app to "Python" (was PythonW).
* This file never made it to the repository, somehow.Jack Jansen2002-08-281-0/+28
|
* These were regenerated some time ago (with ascii chars only andJack Jansen2002-08-286-59/+61
| | | | fully qualified imports) but somehow not checked in yet.
* Interface to Apple Help Viewer.Jack Jansen2002-08-282-0/+7
|