Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More List Manager interfacing: | Just van Rossum | 2001-11-05 | 3 | -23/+363 |
| | | | | | | | - CreateCustomList(): write LDEF's in Python! (carbon + classic) - list.LGetCellDataLocation() (Jack: what's with this _WIN32/pywintoolbox.h stuff?) | ||||
* | macdinking | Just van Rossum | 2001-11-02 | 2 | -10/+9 |
| | |||||
* | use 32bit APIs for control values, refactor slightly | Just van Rossum | 2001-11-02 | 1 | -42/+28 |
| | |||||
* | use proper APIs for activate/deactivate | Just van Rossum | 2001-11-02 | 1 | -17/+5 |
| | |||||
* | wintertime blues | Just van Rossum | 2001-11-02 | 1 | -0/+0 |
| | |||||
* | removed import display hackery | Just van Rossum | 2001-11-02 | 2 | -66/+5 |
| | |||||
* | some support for syntax coloring, disabled for now | Just van Rossum | 2001-11-02 | 2 | -42/+149 |
| | |||||
* | changed the default font | Just van Rossum | 2001-11-02 | 1 | -1/+1 |
| | |||||
* | fixed a non-Carbon Carbon import | Just van Rossum | 2001-11-02 | 1 | -1/+1 |
| | |||||
* | - rearranged some imports | Just van Rossum | 2001-11-02 | 1 | -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 imports | Just van Rossum | 2001-11-02 | 4 | -23/+8 |
| | |||||
* | We always install the Sioux menubar, in stead of only when no menubar | Jack Jansen | 2001-11-01 | 1 | -0/+8 |
| | | | | | | was installed previously. This fixes bug #476904, but I'm not 100% sure it doesn't break anything else. But if it does I'll notice tomorrow when I try to build GRiNS:-) | ||||
* | Under MachO-Python unconditionally import macfsn. | Jack Jansen | 2001-11-01 | 1 | -0/+6 |
| | |||||
* | Workaround for odd problem on my machine: without this I get a traceback | Just van Rossum | 2001-10-31 | 1 | -1/+5 |
| | | | | if I hit enter instead of return upon file selection. | ||||
* | Moved macfsn hackery from macmain.c to macfsmodule.c so it loads | Just van Rossum | 2001-10-31 | 2 | -30/+32 |
| | | | | on demand instead of at startup. | ||||
* | call the correct base method (found due to better inheritance checking in 2.2) | Just van Rossum | 2001-10-31 | 1 | -1/+1 |
| | |||||
* | Regenerated | Jack Jansen | 2001-10-31 | 2 | -18/+4 |
| | |||||
* | Added structseq.c | Just van Rossum | 2001-10-31 | 1 | -0/+0 |
| | |||||
* | Added Donovan Preston and reformatted to 80-char lines. | Jack Jansen | 2001-10-31 | 1 | -74/+82 |
| | |||||
* | Mod by Donovan Preston to allow MacPython to live in a Python.app bundle and ↵ | Jack Jansen | 2001-10-30 | 1 | -34/+62 |
| | | | | | | understand the __main__.py convention used there for applets. This gives us applets that work on both OS9 and OSX! (Although "applet" may not be the correct word for something that is going to be multimegabyte:-). But: the code is currently disabled, as it requires CodeWarrior 7 and I'm still using 6. | ||||
* | Files used for MacPython 2.2b1 distribution. | Jack Jansen | 2001-10-30 | 3 | -5/+7 |
| | |||||
* | Moved PythonScript to unsupported at Bill Bedford's request. It'll go | Jack Jansen | 2001-10-26 | 9 | -0/+0 |
| | | | | away completely next release, unless someone complains. | ||||
* | Added various tidbits. | Jack Jansen | 2001-10-25 | 1 | -3/+18 |
| | |||||
* | Some escaped newlines had spaces between the backslash and the newline. Also ↵ | Jack Jansen | 2001-10-23 | 1 | -7/+4 |
| | | | | slightly changed the comment on xstat(). | ||||
* | New URL for Joe Strouts example page. | Jack Jansen | 2001-10-23 | 1 | -3/+3 |
| | |||||
* | Added _hotshot. | Jack Jansen | 2001-10-23 | 2 | -0/+3 |
| | |||||
* | quit() wasn't included in the suite. This is a quick manual patch to add it. | Jack Jansen | 2001-10-23 | 1 | -1/+2 |
| | |||||
* | Tweaks for MacPython 2.2b1 | Jack Jansen | 2001-10-23 | 10 | -56/+51 |
| | |||||
* | Tweaks for MacPython 2.2b1. | Jack Jansen | 2001-10-23 | 1 | -0/+0 |
| | |||||
* | SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. | Guido van Rossum | 2001-10-18 | 1 | -36/+123 |
| | | | | | | | | | | | | | | | | | This is a big one, touching lots of files. Some of the platforms aren't tested yet. Briefly, this changes the return value of the os/posix functions stat(), fstat(), statvfs(), fstatvfs(), and the time functions localtime(), gmtime(), and strptime() from tuples into pseudo-sequences. When accessed as a sequence, they behave exactly as before. But they also have attributes like st_mtime or tm_year. The stat return value, moreover, has a few platform-specific attributes that are not available through the sequence interface (because everybody expects the sequence to have a fixed length, these couldn't be added there). If your platform's struct stat doesn't define st_blksize, st_blocks or st_rdev, they won't be accessible from Python either. (Still missing is a documentation update.) | ||||
* | Some of the lesser used targets still used FMADD/FMSUB instructions. Fixed. | Jack Jansen | 2001-10-10 | 2 | -0/+0 |
| | |||||
* | Updated, and added a very terse description of PyMac_SetConsoleHandler(). | Jack Jansen | 2001-10-09 | 1 | -10/+8 |
| | |||||
* | Fixed the embedding demo to correctly show the use of | Jack Jansen | 2001-10-09 | 2 | -11/+19 |
| | | | | overriding the console writer. | ||||
* | Mods by Alexandre Parenteau to allow embedding programs to disable the ↵ | Jack Jansen | 2001-10-08 | 3 | -45/+90 |
| | | | | | | MacPython console window completely, and optionally route console output (and input) to routines provided by the embedding app. Things don't fully work yet, but at least it doesn't break anything. | ||||
* | Brought up to date with the current state of affairs. | Jack Jansen | 2001-10-08 | 2 | -5/+6 |
| | |||||
* | Added declarations for PyMac_SetConsoleHandler, PyMan_DUmmyReadHandler | Jack Jansen | 2001-10-08 | 1 | -0/+19 |
| | | | | and PyMac_DummyWriteHandler. | ||||
* | Added weakrefobject.c and regenerated .exp files. | Jack Jansen | 2001-10-08 | 4 | -6/+38 |
| | |||||
* | Fixed old bug (caused by careless Carbonizing) that noone noticed until | Just van Rossum | 2001-09-24 | 1 | -1/+1 |
| | | | | this week (apparently me and Bob Heeter at more or less the same time). | ||||
* | Mods by Donovan Preston (with changes by me to make them "go with the flow") | Jack Jansen | 2001-09-11 | 1 | -14/+90 |
| | | | | | | | | | | | | | that will detect an __main__.py or __rawmain__.py in the application bundle. This file is then exectued as the main script. We now have applets in MachO Python!!! The difference between __main__ and __rawmain__ is that the former gets a complete simulated argv (so you can drop files on the applet and the script sees them in sys.argv) while the latter skips the argv simulation and the <option>key dialog. This keeps the AppleEvent that started the app intact, as well as the funny "-psn_xxxx" argv[1] argument, so the script can do with these what it wants. | ||||
* | - Removed the . in the extensions. | Jack Jansen | 2001-09-11 | 1 | -2/+12 |
| | | | | - Allow any file to be dropped on the interpreter (for file args). | ||||
* | removed debug print. | Jack Jansen | 2001-09-11 | 1 | -1/+0 |
| | |||||
* | Added a note about making sure the Lac/Lib directory is in sys.path. | Jack Jansen | 2001-09-11 | 1 | -2/+8 |
| | |||||
* | Failing to import macfsn is not a fatal error. | Jack Jansen | 2001-09-11 | 1 | -1/+2 |
| | |||||
* | Implemented PyMac_GetFullPathname for MacPython. | Jack Jansen | 2001-09-11 | 1 | -3/+13 |
| | |||||
* | Replaced PyMac_FullPath by PyMac_FullPathname, which has an extra 'length' | Jack Jansen | 2001-09-10 | 5 | -34/+33 |
| | | | | | | parameter for the return string (as unix pathnames are not limited by the 255 char pstring limit). Implemented the function for MachO-Python, where it returns unix pathnames. | ||||
* | Superseded by Python 2.2.vct. | Jack Jansen | 2001-09-10 | 1 | -0/+0 |
| | |||||
* | Install the dialog resources into the application bundle. The EasyDialogs | Jack Jansen | 2001-09-09 | 1 | -1/+7 |
| | | | | selftest now works. | ||||
* | Don't call MacOS.SchedParams() in MachO, it doesn't exist. | Jack Jansen | 2001-09-09 | 1 | -4/+8 |
| | |||||
* | Minimal module to decode AppleSingle files (the way resource files are | Jack Jansen | 2001-09-09 | 1 | -0/+101 |
| | | | | | | | stored in the CVS repository). It can either decode resource/data forks in the standard Mac way or decode only the resource fork but store the result in the data fork (the MacOSX preferred way). Finder info and all other stuff is ignored. | ||||
* | Final tweaks for 2.2a3 distribution. | Jack Jansen | 2001-09-08 | 13 | -60/+104 |
| |