| Commit message (Expand) | Author | Age | Files | Lines |
* | Be a lot less verbose by default. | Jack Jansen | 2002-08-05 | 2 | -6/+7 |
|
|
* | Fixed to run better in unix-Python, and to cater for bgenlocations | Jack Jansen | 2002-08-05 | 1 | -3/+7 |
|
|
* | Moved bgenlocations to the Mac/Lib directory. Not perfect, but better than | Jack Jansen | 2002-08-05 | 1 | -13/+0 |
|
|
* | Specify pathnames in a way that works on both OS9 and OSX. | Jack Jansen | 2002-08-04 | 1 | -3/+3 |
|
|
* | Use universal newline input when scanning header files. | Jack Jansen | 2002-08-04 | 1 | -3/+3 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -2/+2 |
|
|
* | escape 8-bit chars when generating .py files. fixes bug #566302 | Just van Rossum | 2002-06-09 | 1 | -1/+16 |
|
|
* | Converted to use re in stead of regex and regsub (finally:-). | Jack Jansen | 2002-04-23 | 1 | -54/+65 |
|
|
* | Oops: we used PyMem_DEL() to clean up objects, and that's a problem since | Jack Jansen | 2002-04-19 | 1 | -1/+1 |
|
|
* | - Added support for inherent pointer types (typedefs of arrays) | Jack Jansen | 2002-04-12 | 1 | -0/+34 |
|
|
* | Give type name when complaining about using input-only type for output | Jack Jansen | 2002-04-12 | 1 | -2/+2 |
|
|
* | Some structures should be passed to Py_BuildValue by reference, not by value, | Jack Jansen | 2002-03-18 | 2 | -2/+10 |
|
|
* | Added some support for Uicode arguments. Still leaves something to be desired... | Jack Jansen | 2002-01-01 | 3 | -1/+23 |
|
|
* | Updated to current pathnames. | Jack Jansen | 2002-01-01 | 1 | -3/+3 |
|
|
* | Small change to allow for generation of QuickTime module for Windows. | Jack Jansen | 2001-12-18 | 1 | -0/+4 |
|
|
* | OSX tweak: recognize both EXTERN_API_C and EXTERN_API declarations. | Just van Rossum | 2001-12-12 | 1 | -2/+2 |
|
|
* | The module generator now tells its object generators about the module name (t... | Jack Jansen | 2001-12-09 | 2 | -1/+9 |
|
|
* | Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the | Jack Jansen | 2001-11-30 | 1 | -0/+2 |
|
|
* | Don't initialize tp_type statically, it won't work on Windows. Spotted | Jack Jansen | 2001-11-14 | 1 | -1/+1 |
|
|
* | Don't override asplit_pat in Scanner_UH3. No reason to do so, and it broke | Jack Jansen | 2001-10-30 | 1 | -1/+0 |
|
|
* | Only output the buffer size error label if it is used. | Jack Jansen | 2001-09-05 | 2 | -3/+7 |
|
|
* | Don't use a default "int" return type, gcc gives a warning about it. | Jack Jansen | 2001-09-04 | 1 | -1/+1 |
|
|
* | Fixes by Thomas Heller: | Jack Jansen | 2001-08-27 | 5 | -12/+13 |
|
|
* | Oops, left in a debug statement. It's gone now. | Jack Jansen | 2001-07-17 | 1 | -1/+0 |
|
|
* | Allow [] after a parameter name. We currently take this to be the same as * i... | Jack Jansen | 2001-07-13 | 1 | -13/+7 |
|
|
* | Added WeakLink...Generator classes (should have done that ages ago). These ch... | Jack Jansen | 2001-07-01 | 2 | -0/+22 |
|
|
* | Make basechain a class variable in stead of initializing it in __init__. That... | Jack Jansen | 2001-06-28 | 1 | -1/+1 |
|
|
* | Added a couple more types that Apple has taken a fancy to. | Jack Jansen | 2001-06-27 | 1 | -1/+3 |
|
|
* | Added a Parser_OSX class that can parse new-style (C-only) headers, | Jack Jansen | 2001-06-26 | 1 | -4/+19 |
|
|
* | Generate prototype-style function headers in stead of K&R style. Makes life e... | Jack Jansen | 2001-05-19 | 3 | -33/+12 |
|
|
* | Dialog and Window objects are (finally) different beasts. | Jack Jansen | 2001-02-27 | 1 | -2/+1 |
|
|
* | Use the filename, not the pathname, in the definitions file | Jack Jansen | 2001-02-27 | 1 | -1/+1 |
|
|
* | Optionally weed out duplicate prototypes for the same function (which | Jack Jansen | 2000-12-12 | 3 | -3/+11 |
|
|
* | Adapted to new standard for initmodule() routine: don't call | Jack Jansen | 2000-12-12 | 1 | -2/+1 |
|
|
* | Various new standard types. | Jack Jansen | 2000-12-12 | 1 | -1/+16 |
|
|
* | Added support for generating a single module from multiple .h files. | Jack Jansen | 2000-12-12 | 1 | -3/+20 |
|
|
* | Modified the standard mac preamble so we include pymactoolbox.h in | Jack Jansen | 2000-07-15 | 1 | -35/+1 |
|
|
* | ScannerPREUH3.initpatterns() should call Scanner.initpatterns() so the | Jack Jansen | 2000-07-15 | 1 | -0/+1 |
|
|
* | Make a distinction between shorts and unsigned shorts. | Jack Jansen | 2000-07-06 | 2 | -1/+2 |
|
|
* | Jack Jansen: Support for conditional inclusion of methods and functions | Guido van Rossum | 2000-06-28 | 3 | -8/+33 |
|
|
* | Jack Jansen: A few new types needed by new API calls. | Guido van Rossum | 2000-04-24 | 1 | -4/+6 |
|
|
* | Two patches from Jack Jansen: | Guido van Rossum | 2000-01-20 | 2 | -7/+16 |
|
|
* | Patches by Jack Jansen: new type OptionalInBuffer allows | Guido van Rossum | 1999-09-30 | 2 | -1/+14 |
|
|
* | New mixin class that defines cmp and hash that use | Guido van Rossum | 1999-03-15 | 1 | -0/+67 |
|
|
* | Small change by Jack Jansen. | Guido van Rossum | 1999-03-09 | 1 | -2/+2 |
|
|
* | accept * in return value type and convert it to _ptr after the | Guido van Rossum | 1998-04-28 | 1 | -1/+2 |
|
|
* | Style and StyleParameter are two different types. | Guido van Rossum | 1998-04-28 | 1 | -1/+1 |
|
|
* | class ByAddressType, a simple Type but passed by address even on | Guido van Rossum | 1998-04-28 | 1 | -0/+7 |
|
|
* | Patches from Jack for new Apple headers | Guido van Rossum | 1998-02-23 | 3 | -6/+36 |
|
|
* | Generate new style exception initializer (Jack). | Guido van Rossum | 1997-10-08 | 1 | -1/+1 |
|
|