Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | No longer used. | Jack Jansen | 2003-11-20 | 1 | -183/+0 | |
| | ||||||
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -48/+0 | |
| | ||||||
* | Getting rid of one more TARGET_API_MAC_OSX. | Jack Jansen | 2003-11-19 | 1 | -7/+0 | |
| | ||||||
* | Getting rid of code conditional on TARGET_API_MAC_*. | Jack Jansen | 2003-11-19 | 17 | -711/+2 | |
| | ||||||
* | PyDoc_STR is always defined nowadays (and has been for quite some time:-) | Jack Jansen | 2003-11-19 | 5 | -15/+0 | |
| | ||||||
* | Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS: | Jack Jansen | 2003-11-19 | 57 | -520/+57 | |
| | | | | MacOS9isms. | |||||
* | WITHOUT_FRAMEWORKS conditional code bites the dust: this was for | Jack Jansen | 2003-11-19 | 6 | -29/+0 | |
| | | | | pre-carbon MacOS9 support. | |||||
* | Gone: all this functionality is now in the Carbon.File and Folder modules. | Jack Jansen | 2003-11-19 | 1 | -1531/+0 | |
| | ||||||
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -5/+0 | |
| | ||||||
* | Removing the obvious OS9-only documents§ | Jack Jansen | 2003-11-19 | 16 | -2513/+0 | |
| | ||||||
* | Getting rid of support for MacOS9 and earlier. This is the first step, | Jack Jansen | 2003-11-19 | 181 | -22664/+0 | |
| | | | | | and the biggest in size, but probably the easiest. Hunting through the source code comes next. | |||||
* | Temporary fix for buildon on both Panther and Jaguar. | Jack Jansen | 2003-11-19 | 1 | -1/+5 | |
| | ||||||
* | Moved various files over from the release23-maint branch. | Jack Jansen | 2003-11-19 | 4 | -29/+51 | |
| | ||||||
* | Upped version | Jack Jansen | 2003-11-19 | 1 | -4/+4 | |
| | ||||||
* | Upped version numbers, and converted to UTF-16. | Jack Jansen | 2003-11-19 | 1 | -0/+0 | |
| | ||||||
* | Upped. | Jack Jansen | 2003-11-19 | 1 | -4/+4 | |
| | ||||||
* | This file is utf-16, not utf-8 (or ascii). | Jack Jansen | 2003-11-19 | 1 | -0/+0 | |
| | ||||||
* | Forward port of various fixes that were initially only done on the | Jack Jansen | 2003-11-19 | 5 | -16/+91 | |
| | | | | | | | | | | | | | | | | release23-maint branch: - Remember the scroll position when rebuilding the browser (as we do far too often). Fixes #824430. - Allow for the documentation to be inside PythonIDE as well as in the Python.app inside the framework (the original location for 2.3). - Updated version numbers - In PythonIDE, add the Tools/IDE directory as the second entry in sys.path in stead of as the first, leaving PythonIDE.app/Contents/Resources as the first one. - The code for setting the working directory to $HOME was both incorrect and in the wrong place, fixed. - On OSX the default location for IDE scripts is now $HOME/Library/Python/IDE-Scripts. | |||||
* | Ported from 23maint branch: add icons to BuildApplet. | Jack Jansen | 2003-11-19 | 2 | -0/+57 | |
| | ||||||
* | Added a site | Jack Jansen | 2003-11-19 | 1 | -0/+1 | |
| | ||||||
* | Upped version | Jack Jansen | 2003-11-19 | 1 | -1/+1 | |
| | ||||||
* | Fix for [ 782686 ]: new files used \r as the default line separator | Just van Rossum | 2003-11-18 | 1 | -13/+8 | |
| | | | | instead of os.linesep. | |||||
* | fix for bug [819860]: make sure the buffer gets emptied, even if WEInsert() ↵ | Just van Rossum | 2003-10-12 | 1 | -4/+8 | |
| | | | | fails | |||||
* | Don't export the SPB type as "SPB", because it shadows the method SPB, | Jack Jansen | 2003-07-24 | 1 | -0/+3 | |
| | | | | | which is really important. This is a stopgap measure, as only the generated C code is adapted. Fixes #776533. | |||||
* | Added instructions on setting the proxy host. | Jack Jansen | 2003-07-24 | 1 | -0/+6 | |
| | ||||||
* | MacPython-OS9 has its own copy of the interrupt handling code. Added ↵ | Jack Jansen | 2003-07-23 | 1 | -0/+6 | |
| | | | | PyErr_SetInterrupt() here too. | |||||
* | Don't force boot-disk-only install, for reasons unknown it causes more | Jack Jansen | 2003-07-23 | 2 | -5/+8 | |
| | | | | | problems than it solves. In stead, put a warning near the top of the welcome message. Fixes (or, rather works around) bug #764975. | |||||
* | Scripts runs with pythonw no longer had full window manager access due | Jack Jansen | 2003-07-23 | 2 | -3/+3 | |
| | | | | | to the name change of Python.app/Contents/MacOS/python to Python.app/Contents/MacOS/Python. Fixes #776116. | |||||
* | Various tweaks to make the packages work better. Still not 100%, though. | Jack Jansen | 2003-07-22 | 1 | -4/+18 | |
| | ||||||
* | Files used for the 2.3rc1+ binary installer. This one has the size problem | Jack Jansen | 2003-07-22 | 2 | -7/+9 | |
| | | | | | | | fixed. It also attempts to force boot-disk-only installs, but this seems to lead to a problem that you have to deselect and reselect the installation disk. If no-one comes up with a fix RSN I'll revert to the previous situation and explain in the readme that you cannot install on a non-system-disk. | |||||
* | We erronuously re-used the pimpinstaller object if there were multiple installs. | Jack Jansen | 2003-07-21 | 1 | -4/+3 | |
| | | | | This lead to a duplication of error messages (and installs). Fixes #764615. | |||||
* | Because plistlib doesn't catch all possible errors that can | Jack Jansen | 2003-07-21 | 1 | -0/+5 | |
| | | | | | | | happen while parsing a plistfile feeding an ill-formatted file to pimp may cause an exception. As a stopgap we use an unqualified except and print an error message "Unspecified error, probably ill-formatted database". Fixes #765621. | |||||
* | removed trailing tabs in several places, including after the final | Fred Drake | 2003-07-07 | 1 | -8/+7 | |
| | | | | newline | |||||
* | Fixed lots of minor issues found by Edward Moy: incorrect version | Jack Jansen | 2003-07-04 | 7 | -22/+26 | |
| | | | | strings, non-standard naming of things in bundles, etc. | |||||
* | Added missing newline at end of file. | Jack Jansen | 2003-07-04 | 1 | -1/+2 | |
| | ||||||
* | Files used for 2.3b2 macpython binary distribution. | Jack Jansen | 2003-07-04 | 2 | -3/+4 | |
| | ||||||
* | Moved two sentences around to make them clearer. | Jack Jansen | 2003-07-03 | 1 | -4/+5 | |
| | ||||||
* | Skip noticed that the document talks about "setting PythonLauncher as the | Jack Jansen | 2003-07-02 | 1 | -3/+5 | |
| | | | | | default application" but doesn't give a clue on how to do this. Refer to Apple Help. | |||||
* | Tooltip for tab/space consistency check was the wrong way around. Spotted | Jack Jansen | 2003-07-02 | 3 | -6/+2 | |
| | | | | by Skip. | |||||
* | Moved the IDE tutorial to a directory with a shorter name. The long | Jack Jansen | 2003-07-02 | 15 | -3/+3 | |
| | | | | name was giving problems with some tar implementations. | |||||
* | Slight clarification on running the examples from the Finder. | Jack Jansen | 2003-06-29 | 1 | -2/+5 | |
| | ||||||
* | Suggest people visit www.python.org/packman if the default database | Jack Jansen | 2003-06-29 | 1 | -1/+3 | |
| | | | | cannot be found. | |||||
* | By default build docs, don't download them. | Jack Jansen | 2003-06-28 | 1 | -3/+3 | |
| | ||||||
* | Give compileall a -d option so it works correctly in the face of | Jack Jansen | 2003-06-21 | 1 | -2/+2 | |
| | | | | DESTDIR being non-null. | |||||
* | Added a field that allows the user to set sys.argv-style arguments | Jack Jansen | 2003-06-20 | 9 | -5/+21 | |
| | | | | to the script. Fixes #757544. | |||||
* | Cop out, and set things to be group-writeable recursively. The various | Jack Jansen | 2003-06-20 | 3 | -1/+7 | |
| | | | | | xxxMODE flags don't cut it. Also set the umask to 2 before doing the compileall on the destination system. | |||||
* | Updated. | Jack Jansen | 2003-06-20 | 1 | -45/+37 | |
| | ||||||
* | At startup, test that PythonLauncher is the default application for files | Jack Jansen | 2003-06-20 | 3 | -18/+44 | |
| | | | | of type .py, .pyw and .pyc. If not, post a warning. | |||||
* | Installation of PythonLauncher has been failing silently, probably since | Jack Jansen | 2003-06-20 | 1 | -2/+2 | |
| | | | | the DESTDIR patch. Fixed. | |||||
* | Install Demo and Tools too. | Jack Jansen | 2003-06-19 | 1 | -0/+1 | |
| |