- 1986412 Added Mlte module (which, to my surprise, is available for classic ppc as well). by Jack Jansen · 23 years ago
- 2aadb89 First stab at an interface to the Multi Language Text Editor. It compiles and imports, but that's about all. Apple didn't put const in front of their input-only by-reference args, so that needs fixing first. by Jack Jansen · 23 years ago
- 2c278ed Fixed another case of the PyArg_Parse 'h' semantic change problem, sigh... by Jack Jansen · 23 years ago
- 3eec762 - fixed some re usage, partly so it'll still work when re uses pre instead by Just van Rossum · 23 years ago
- 4e566ab Implemented minimal FSRef support, plus conversion between FSRefs, FSSpecs and pathnames where applicable. by Jack Jansen · 23 years ago
- 25ddc63 - minor cleanup, removed bogus comments by Just van Rossum · 23 years ago
- 924e18e don't crash when encountering bad marshal data by Just van Rossum · 23 years ago
- c90acb9 Do conversion of CFStrings to/from unicode. by unknown · 23 years ago
- d1054ef Set the default 8-bit encoding based on the system script and language. by unknown · 23 years ago
- f428aef Don't promise mac-japanese encoding as we don't have a codec for it. by unknown · 23 years ago
- 4542897 Added the new unicode defines. Not really tested yet, but Python compiles again at least. by Jack Jansen · 23 years ago
- 340d98f - Use weaklink generators so we can support OSX-only calls without crashing on OS9. by Jack Jansen · 23 years ago
- 7becc91 Added CFURL support, and got base chaining to really work. by Jack Jansen · 23 years ago
- bc7c896 CFArray, CFData and CFDictonary are now covered, but mainly opaque. by Jack Jansen · 23 years ago
- f4b9fb7 Added CF module build and project generation (carbon only). by Jack Jansen · 23 years ago
- 686f9c3 First small step towards bgen-generated CoreFoundation. there is hardly any real functionality yet, but method chains seem to work, and so do Retain/Release semantics. by Jack Jansen · 23 years ago
- ba18673 Added a note about recompiling OSAm before distributing. by Jack Jansen · 23 years ago
- 639a740 Fixed typo in doc string. by Just van Rossum · 23 years ago
- 0297dca Fixed bug that prevented shared libs that are submodules of a by Just van Rossum · 23 years ago
- 19f273c WaitNextEvent short vs. unsigned short fix. by Jack Jansen · 23 years ago
- 1a3125e Changed the order of the buttons for EasyDialogs.AskYesNoCancel() from the unusual [cancel, no, yes] to the more standard [no, cancel, yes]. by Just van Rossum · 23 years ago
- 67456e8 don't blow up when the charno SyntaxError value is None by Just van Rossum · 23 years ago
- b10eb84 repaired expandselection and uncomment breakage by Just van Rossum · 23 years ago
- 50cb38d Added support for the gc module (!). by Just van Rossum · 23 years ago
- 2942131 Got rid of a silly #if. by Jack Jansen · 23 years ago
- b8248d8 Don't use extern when we mean staticforward (OSX gcc is picky about it). by Jack Jansen · 23 years ago
- 82bcbd0 {Is,Set}AntiAliasedTextEnabled don't exist on MacOS 8.5.5 and earlier. For now: cop out and blacklist them. by Jack Jansen · 23 years ago
- 3685a43 ANSIfied function headers to shut up compiler warnings on OSX/Mach-o. by Jack Jansen · 23 years ago
- 6b9289f Added a const to shut up a compiler warning. by Jack Jansen · 23 years ago
- 4edc5eb Reversed the order of the checks for None or a Dialog where a Window is expected so it doesn't crash under OSX/Mach-o. by Jack Jansen · 23 years ago
- 8853b18 Removed some unused routines under Carbon. They caused compile errors with UH34. by Jack Jansen · 23 years ago
- ff75c21 Adapted to Universal Headers 3.4: new refcontype and use UPP names in stead of Proc names for callback creation. by Jack Jansen · 23 years ago
- 5daef31 Adapted for Universal Headers 3.4: refcon type has changed (sigh) and use modern (UPP in stead of Proc) names for callback object creation. by Jack Jansen · 23 years ago
- d700d79 Override bdb's canonic() method with a no-op: with bdb's version we couldn't edit breakpoints in file-less ("Untitled" script windows). Besides, we did't need it as we always use full path names anyway. by Just van Rossum · 23 years ago
- fb3e54f made 7-bit-clean. by Just van Rossum · 23 years ago
- dc3c617 Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid any further encoding conversion troubles. by Just van Rossum · 23 years ago
- 13a0172 Got rid of mactoolboxglue.c by Jack Jansen · 23 years ago
- 0c99575 Fixed an error in the signature of the QdRGB converter routines. by Jack Jansen · 23 years ago
- dac238b When reading from stdin (with the dialog box) use any partial line on by Jack Jansen · 23 years ago
- a5ca7dd One more macroman<->latin1 conversion victim. by Jack Jansen · 23 years ago
- 0e2d6bf Updated to reflect the current state of config.h.in. by Jack Jansen · 23 years ago
- fe9110b removed a routine that has moved to macglue.c by Jack Jansen · 23 years ago
- 0268ac8 Include Carbon/Carbon.h if appropriate. by Jack Jansen · 23 years ago
- b16cf50 Added WITHOUT_FRAMEWORKS and USE_TOOLBOX_OBJECT_GLUE defines. by Jack Jansen · 23 years ago
- 11493bc Simple script to regenerate all bgen-generated modules. by Jack Jansen · 23 years ago
- fa77e1a Lots more Carbon/Carbon.h includes, new UPP routine names, function prototypes. Most toolbox modules now compile, link and import in MacOSX-MachO python. by Jack Jansen · 23 years ago
- 1129671 Fixed changed UPP routines names. The module now compiles and loads. by Jack Jansen · 23 years ago
- b45032e Fixed a nasty slowdown in imports in frozen applications: the shortcut by Jack Jansen · 23 years ago
- 25e0c79 Another include Carbon/Carbon.h by Jack Jansen · 23 years ago
- 741e037 Moved PyMac_GetFullPath from macgetargv.c to macglue.c. It should by Jack Jansen · 23 years ago
- f316330 Ifdeffed a few more sections. All functionality that is relevant on MacOSX by Jack Jansen · 23 years ago
- 6143d53 Include Carbon/Carbon.h in stead of universal headers, if appropriate. by Jack Jansen · 23 years ago
- 9f66b4a include Carbon/Carbon.h in stead of universal headers, if appropriate. by Jack Jansen · 23 years ago
- 8bb1dc1 Merged mactoolboxglue.c into macglue.c. A later step will be to separate out by Jack Jansen · 23 years ago
- b686791 Added pymactoolboxglue.c and changed the exported symbols having to do with this. by Jack Jansen · 23 years ago
- e8f53bb Dynamically loaded toolbox modules don't need to link against each other anymore, due to the new glue code that ties them together. by Jack Jansen · 23 years ago
- f57a4a2 Glue code to connect obj_New and obj_Convert routines (the PyArg_Parse and Py_BuildTuple helpers) from one dynamically imported module to another. by Jack Jansen · 23 years ago
- 0e04eec First step in porting MacPython modules to OSX/unix: break all references between modules except for the obj_New() and obj_Convert() routines, the PyArg_Parse and Py_BuildValue helpers. by Jack Jansen · 23 years ago
- 6f84ed5 Fixed macroman<->latin1 conversion. Some chars don't by Jack Jansen · 23 years ago
- dfebe90 Fixed macroman<->latin1 conversion. Some characters don't exist in latin1, but at least the roundtrip gives by Jack Jansen · 23 years ago
- 5a4718e Bah, somehow the macroman<->iso-latin-1 translation got lost during the merge. Checking in one fixed file to make sure MacCVS Pro isn't the problem. If it isn't a flurry of checkins will follow tomorrow. If it is... well... by Jack Jansen · 23 years ago
- 6db483e Added a WITHOUT_FRAMEWORKS define to all the config files, so that on MacOS<=9 compiles use Universal Headers, not Carbon/Carbon.h. by Jack Jansen · 23 years ago
- 0194ad5 Got the first MacPython module working under MacOSX/MachO (gestalt). Main changes by Jack Jansen · 23 years ago
- 6e68a7e Be more sensible about when to use TARGET_API_MAC_OS8 in stead of !TARGET_API_MAC_CARBON. This should greatly facilitate porting stuff to OSX in its MachO/BSD incarnation. by Jack Jansen · 23 years ago
- 1bd0a71 Added iterobject.c to the project. And trying my first checkin at the same time. by Jack Jansen · 23 years ago
- 99e607a Added a note that test_longexp needs 400MB. by Jack Jansen · 24 years ago
- d454b57 Has been dead so long that there's no use keeping it in the active bit of the repository. by Jack Jansen · 24 years ago
- 569c09c Removed some confusing sentences that are no longer relevant now that by Jack Jansen · 24 years ago
- e9bcb5c Got rid of the whole event filtering mess again, I can't get it to work. Simply disabling the Tk event handling hook in _tkinter is not as nice, but at least it works. by Jack Jansen · 24 years ago
- 69f086c Apparently the code to forestall Tk eating events was too aggressive (Tk user input stopped working). Fixed (I hope:-). by Jack Jansen · 24 years ago
- c1218bc Files for 2.1 distribution. by Jack Jansen · 24 years ago
- c54be42 Check RefCon backpointer to python object with IsPointerValid() before dereferencing it (carbon only). by Jack Jansen · 24 years ago
- 26e51e1 Updated copyright info (which was long due). by Jack Jansen · 24 years ago
- b4b27be - Raise console window on input. Fixes Carbon hang. by Jack Jansen · 24 years ago
- 15f1c08 - Raise console window on input. Fixes Carbon hang. by Jack Jansen · 24 years ago
- ee67791 Don't crash if InfoScrap doesn't exist (as is the case in Carbon). by Jack Jansen · 24 years ago
- 4393512 Finally merged morefindertools into findertools. by Jack Jansen · 24 years ago
- 3aee775 Added a note about Help and ctb missing in carbon. by Jack Jansen · 24 years ago
- bad62de Version 1.2 by Christopher Stern. by Jack Jansen · 24 years ago
- e3850f5 Disable fused-add-mul instructions. They give a nonstandard result for some things that test_coercion complains about. The added performance is probably minimal for Python anyway. by Jack Jansen · 24 years ago
- 216b870 If the frontmost window is not a Tk window exit the event handling code early. This fixes that using Tk once used to disable cmd-. processing. It may also influence Tk/IDE interaction, I'm not sure. by Jack Jansen · 24 years ago
- 6333af1 On OSX show a dialog explaining that ConfigurePythonCarbon launch will probably fail. This turns out to be a VISE 7.1.1 problem, probably. by Jack Jansen · 24 years ago
- 2e2546c On OSX always copy PythonCore. It turns out an orphaned alias in /Library/CFMSupport (happens when you remove python and aliased pythoncore) wreaks havoc with the system. by Jack Jansen · 24 years ago
- 9bfae98 Changed some of the dialogs to be a little clearer. by Jack Jansen · 24 years ago
- fc369f2 Don't show finder-delay-warning on OSX. Untested. by Jack Jansen · 24 years ago
- 2b73fe9 Updated for 2.1b2 distribution. by Jack Jansen · 24 years ago
- ff4e62d Added a note about BBPy.lm. by Jack Jansen · 24 years ago
- 64f9f71 Added a note about the new (since 2.0) OSA architecture. by Jack Jansen · 24 years ago
- 3f4c173 Oops, ISO translation was off. Fixed. by Jack Jansen · 24 years ago
- 996c5c1 Disable fused-add-mul instructions. They give a nonstandard result for some things that test_coercion complains about. The added performance is probably minimal for Python anyway. by Jack Jansen · 24 years ago
- c658236 Fixed some access paths. by Jack Jansen · 24 years ago
- 9de05f4 Started on 2.1b2 release notes. Cleaned out alfa notes, etc. by Jack Jansen · 24 years ago
- 875b51d Added dummy _tkinter module for Carbon, which explains that Tkinter isnt supported under Carbon. by Jack Jansen · 24 years ago
- aabdb0d Dummy _tkinter module for Carbon, which explains that Tkinter isnt supported under Carbon. by Jack Jansen · 24 years ago
- fddef43 Got module to work under Carbon. Also disabled a few more bits of cfm68k support. by Jack Jansen · 24 years ago
- 26d42df Added riscos modules to modules that don't have to be included. by Jack Jansen · 24 years ago
- 4cf97c4 Files for second 2.1b1 distribution. by Jack Jansen · 24 years ago
- 5c82d13 FindFolder argument is a short, not an unsigned short. by Jack Jansen · 24 years ago
- 6b498de Handle the apple menu differently under Carbon. by Jack Jansen · 24 years ago
- abd703d FindFolder argument is a short, not an unsigned short. by Jack Jansen · 24 years ago