Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Got rid of macglue.h, replacing it by pymactoolbox.h where relevant. | Jack Jansen | 2003-11-20 | 1 | -1/+0 |
| | | | | Cleaned up various things in the toolbox modules. | ||||
* | Getting rid of one more TARGET_API_MAC_OSX. | Jack Jansen | 2003-11-19 | 1 | -7/+0 |
| | |||||
* | WITHOUT_FRAMEWORKS conditional code bites the dust: this was for | Jack Jansen | 2003-11-19 | 1 | -4/+0 |
| | | | | pre-carbon MacOS9 support. | ||||
* | Oops, 'k' is the new format code for un unchecked 32 bit quantity, | Jack Jansen | 2003-04-17 | 1 | -4/+4 |
| | | | | not 'K'. | ||||
* | Converted manually written code to the new K format specifier. | Jack Jansen | 2003-04-17 | 1 | -5/+5 |
| | | | | Untested, but at least it still compiles. | ||||
* | Removed unused variable | Jack Jansen | 2003-03-07 | 1 | -1/+0 |
| | |||||
* | Fixed the first two bugs in the new file dialogs (found by Just): | Jack Jansen | 2003-01-17 | 1 | -10/+11 |
| | | | | | - AskFileForSave didn't work for string return values - filterProc didn't work. | ||||
* | For reasons unknown previewProc and filterProc were disabled. Enabled them. | Jack Jansen | 2003-01-17 | 1 | -4/+2 |
| | |||||
* | - Various tweaks to shut up compiler warnings. | Jack Jansen | 2002-12-23 | 1 | -6/+6 |
| | | | | | - Regenerated with the correct calls to PyType_Ready and the correct deallocator calls. | ||||
* | Getting rid of pre-Carbon (MacOS8) support. All code depending on | Jack Jansen | 2002-12-12 | 1 | -4/+0 |
| | | | | | | TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some TARGET_API_MAC_OSX conditional code is gone, because it is no longer used on OSX-only Python (only in MacPython-OS9). | ||||
* | Allow access to the returned value(s) as FSRefs. Unfortunately for some | Jack Jansen | 2002-11-22 | 1 | -2/+38 |
| | | | | | reason getting at saveFileName doesn't work, so it currently only really works for opening files for reading. | ||||
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | The staticforward define was needed to support certain broken C compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the static keyword when it was used with a forward declaration of a static initialized structure. Standard C allows the forward declaration with static, and we've decided to stop catering to broken C compilers. (In fact, we expect that the compilers are all fixed eight years later.) I'm leaving staticforward and statichere defined in object.h as static. This is only for backwards compatibility with C extensions that might still use it. XXX I haven't updated the documentation. | ||||
* | Replaced lots of PyMem_DEL() calls with PyObject_DEL(). | Jack Jansen | 2002-05-22 | 1 | -1/+1 |
| | |||||
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | type.__module__ behavior. This adds the module name and a dot in front of the type name in every type object initializer, except for built-in types (and those that already had this). Note that it touches lots of Mac modules -- I have no way to test these but the changes look right. Apologies if they're not. This also touches the weakref docs, which contains a sample type object initializer. It also touches the mmap test output, because the mmap type's repr is included in that output. It touches object.h to put the correct description in a comment. | ||||
* | Added prototypes to silence gcc strict-prototype warnings. | Jack Jansen | 2001-09-04 | 1 | -81/+27 |
| | | | | Fixed a few missing return values. | ||||
* | Don't call PyMac_HandleEvent in unix-Python | Jack Jansen | 2001-09-02 | 1 | -0/+2 |
| | |||||
* | Fixed changed UPP routines names. The module now compiles and loads. | Jack Jansen | 2001-05-22 | 1 | -3/+7 |
| | |||||
* | Treat an empty kwdict argument the same as a missing one. | Jack Jansen | 2001-01-19 | 1 | -20/+20 |
| | |||||
* | Fixes that should make it possible to run Python on machines without ↵ | Jack Jansen | 2000-09-14 | 1 | -0/+5 |
| | | | | NavServices installed. | ||||
* | Got rid of Py_FatalError calls. | Jack Jansen | 2000-09-08 | 1 | -3/+0 |
| | |||||
* | Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef. | Jack Jansen | 2000-07-14 | 1 | -1/+1 |
| | |||||
* | pymactoolbox.h contains protoypes for all externally visible toolbox module | Jack Jansen | 2000-07-14 | 1 | -8/+1 |
| | | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error. | ||||
* | Made the core toolbox modules carbon-compatible using the new greylist ↵ | Jack Jansen | 2000-06-02 | 1 | -1/+12 |
| | | | | | | feature of bgen: non-carbon methods are still included in non-carbon MacPython. The issue of backward compatibility of Python code is still open. Macmodule and macosmodule have also been carbonified. Some functionality is still missing there. | ||||
* | Got rid of PyMem_XDEL. | Jack Jansen | 2000-05-05 | 1 | -7/+7 |
| | |||||
* | Handling of defaultLocation argument was wrong, causing a crash when used. ↵ | Jack Jansen | 2000-01-13 | 1 | -1/+16 |
| | | | | Fixed. | ||||
* | Added a line about passing None as eventProc to the docstring to get movable | Jack Jansen | 1999-12-17 | 1 | -0/+1 |
| | | | | dialogs. | ||||
* | Finished (I think), but only very lightly tested. Should now have full ↵ | Jack Jansen | 1999-12-17 | 1 | -104/+413 |
| | | | | | | interface: all calls, callbacks, arguments, etc. Also added docstrings. | ||||
* | Allow keyword arguments, and the dialog is now actually shown. No way to | Jack Jansen | 1999-12-16 | 1 | -29/+53 |
| | | | | get at the result yet, though:-) | ||||
* | Navigation Services module. Started from scratch, as Joe's module exported ↵ | Jack Jansen | 1999-12-16 | 1 | -0/+618 |
too little for my needs. |