1. 918a9e2 Updated (and regenerated) for name change in tp_init method arguments: by Jack Jansen · 19 years ago
  2. 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
  3. da6081f Ported to Universal Headers 3.4.2. Qd and Qt remain to be done. by Jack Jansen · 21 years ago
  4. 7107c1a Got rid of macglue.h, replacing it by pymactoolbox.h where relevant. by Jack Jansen · 21 years ago
  5. a53f4eb Getting rid of code conditional on TARGET_API_MAC_*. by Jack Jansen · 21 years ago
  6. e48cef7 Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS: MacOS9isms. by Jack Jansen · 21 years ago
  7. 8c46ce9 Allow setting the auto dispose flag on window objects. by Jack Jansen · 21 years ago
  8. b734869 - Various tweaks to shut up compiler warnings. by Jack Jansen · 22 years ago
  9. f955784 Regenerated with inheritance-aware xxxx_Check() macros. by Jack Jansen · 22 years ago
  10. 65cbf93 Get rid of support for Universal Headers older than 3.4 and various other by Jack Jansen · 22 years ago
  11. 6c7e326 Getting rid of pre-Carbon (MacOS8) support. All code depending on by Jack Jansen · 22 years ago
  12. 96cebde Added PEP253 support to most Carbon modules. This isn't complete yet: by Jack Jansen · 22 years ago
  13. dbd5701 Converted the Carbon modules to use PEP252-style objects, with by Jack Jansen · 22 years ago
  14. f34a8bc Moved CoreFoundation type support to bgen/macsupport. by Jack Jansen · 22 years ago
  15. 4993188 Regenerated with PyDoc_STR() around docstrings. by Jack Jansen · 22 years ago
  16. 87eea88 After generating the Python file with definitions try to run it, so by Jack Jansen · 22 years ago
  17. aaebdd6 Enable building of Carbon toolbox modules with unix-Python. by Jack Jansen · 22 years ago
  18. 84fca94 fixed refcount leak in CreateNewWindow() and CreateWindowFromResource(). by Just van Rossum · 22 years ago
  19. 033b79c Regenerated. by Jack Jansen · 22 years ago
  20. 9d79990 Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. by Jack Jansen · 23 years ago
  21. ca9a4a6 Lurking bug found by patch for 531291: FSSpecs should be passed to by Jack Jansen · 23 years ago
  22. 620a766 Updated to Universal Headers 3.4 by Jack Jansen · 23 years ago
  23. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  24. b3be216 Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the by Jack Jansen · 23 years ago
  25. bd00884 First tweaks to allow MacPython to be compiled with Universal Headers 3.4 by Jack Jansen · 23 years ago
  26. fd06486 Shut up many more gcc warnings. by Jack Jansen · 23 years ago
  27. 06d2e1a Regenerated without default int return types. by Jack Jansen · 23 years ago
  28. 25a5bd7 Renamed. by Jack Jansen · 23 years ago
  29. 50ecb0a Renamed the Mac toolbox modules to have an initial _ in their name. by Jack Jansen · 23 years ago
  30. 77105a9 The MacOS toolbox modules have acquired an _ in front of their name. Normal usage is through a wrapper module (without underscore) which lives in the Carbon package. by Jack Jansen · 23 years ago
  31. 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
  32. 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
  33. 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
  34. c54be42 Check RefCon backpointer to python object with IsPointerValid() before dereferencing it (carbon only). by Jack Jansen · 23 years ago
  35. f1d7b41 Disable GetWindowSpareFlag and GetWindowGoAwayBox on carbon. by Jack Jansen · 24 years ago
  36. 3f49e4d Oops, repr didn't allocate the memory it used... by Jack Jansen · 24 years ago
  37. 0d202b7 Various tweaks to make it everything build and compile again under carbon. Mainly greylisted functions. by Jack Jansen · 24 years ago
  38. 3224865 Emulate a few more non-carbon calls in carbon and the other way around. by Jack Jansen · 24 years ago
  39. 87a3092 Added hash() and compare() functions. Needed because multiple WinObj's can now refer to the same underlying WindowRef. by Jack Jansen · 24 years ago
  40. 80716f0 Set autodispose only if RefCon isn't set yet on the window. This way we don't accidentally dispose of windows that are actually dialogs-in-disguise. by Jack Jansen · 24 years ago
  41. 723ad8a More toolbox modules adapted to Universal Headers 3.3.2. by Jack Jansen · 24 years ago
  42. 0aee0e6 Window objects now also have an AutoDispose funcpointer (set for our windows, cleared for foreign windows). Needed mainly for Carbon (where we don't know about the windows belonging to our dialogs). by Jack Jansen · 24 years ago
  43. 74a1e63 Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef. by Jack Jansen · 24 years ago
  44. 9d8b96c pymactoolbox.h contains protoypes for all externally visible toolbox module by Jack Jansen · 24 years ago
  45. 0b13e7c Changed all (hopefully) uses of unsigned 16 bit value to use H format specifier, now that h is signed-only. by Jack Jansen · 24 years ago
  46. 8d929ae All relevant toolbox modules have now been carbonized. by Jack Jansen · 24 years ago
  47. e79dc76 Made the core toolbox modules carbon-compatible using the new greylist feature of bgen: non-carbon methods are still included in non-carbon MacPython. The issue of backward compatibility of Python code is still open. by Jack Jansen · 24 years ago
  48. b1b78d8 Bgen now understands more constant definitions, but that means that a few which are not parseable in Python have to be blacklisted. by Jack Jansen · 25 years ago
  49. a05ac60 Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support. by Jack Jansen · 25 years ago
  50. e4349e8 Re-generated with OSStatus treated like OSErr (i.e. not returned, but raising by Jack Jansen · 26 years ago
  51. cdcbd1f Added {Get,Set}WindowUserData methods. by Jack Jansen · 26 years ago
  52. e180d99 Grmpf, a lot more routines have gotten a "Mac" prefix for their by Jack Jansen · 26 years ago
  53. 1c4e614 Re-generated from new (3.1) universal headers by Jack Jansen · 26 years ago
  54. 0c4d947 Replaced addpack by handcrafted code to find the bgen stuff. by Jack Jansen · 26 years ago
  55. 21f9687 Regenerated from Universal Headers 3.0.1. Some new calls are by Jack Jansen · 27 years ago
  56. a755e68 Export type objects to Python by Jack Jansen · 27 years ago
  57. 8f0fab7 Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason by Jack Jansen · 27 years ago
  58. d84e7aa Regenerated by Jack Jansen · 28 years ago
  59. ded81a1 Removed ...gen.py files from repository by Jack Jansen · 28 years ago
  60. 46d9e79 bgen-generators now drop the python definition file straight in the by Jack Jansen · 28 years ago
  61. 425e9eb - Added color window/pixmap support by Jack Jansen · 29 years ago
  62. b7abb18 Added support for GrafPort object by Jack Jansen · 29 years ago
  63. 330f576 - Added support for PicHandle by Jack Jansen · 29 years ago
  64. d4c2646 Generated anew by Jack Jansen · 29 years ago
  65. caf7505 Added WhichWindow function to obtain window object given WindowPtr (as by Jack Jansen · 29 years ago
  66. 7d0bc83 Ported to Universal Header 2.0.1f (i.e. CW6) by Jack Jansen · 29 years ago
  67. b81cf9d Trying again to check it in. Changes to: by Jack Jansen · 29 years ago
  68. ea39abd more stuff by Guido van Rossum · 30 years ago
  69. 9784295 another round... ported to __SC__ by Guido van Rossum · 30 years ago
  70. 17448e2 Committed a more or less working version. by Guido van Rossum · 30 years ago