1. 5bdbabd Added more prototypes. by Jack Jansen · 24 years ago
  2. 1f9f2f4 Added PyMac_getscript() which returns the pythonic name of the current script. Not ideal and not complete, but good enough for the time being. Idea and most of the code by Fredrik Lund. by Jack Jansen · 24 years ago
  3. 660bb1d MacPython on MacOSX DP4 gets started in the wrong directory. The workaround (ifdeffed by USE_ARGV0_CHDIR) is to do a chdir() to the folder part of our executable name. by Jack Jansen · 24 years ago
  4. 74a1e63 Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef. by Jack Jansen · 24 years ago
  5. 41e25cc include macdefs.h for declaration of getwd, if non-gusi python. by Jack Jansen · 24 years ago
  6. bb7e213 PyMac_PromptGetFile and PyMac_GetDirectory don't exist in carbonpython. by Jack Jansen · 24 years ago
  7. e17fd2a Got rid of __SC__ ifdefs. by Jack Jansen · 24 years ago
  8. 1af5b08 Removed guesstabsize.c, which is obsolete. by Jack Jansen · 24 years ago
  9. 9ae898b ANSIfication step 2: make sure all needed prototypes are available, and all needed by Jack Jansen · 24 years ago
  10. d88296d ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO. by Jack Jansen · 24 years ago
  11. fe38d29 PyMac_FindModuleExtension now uses a size_t as its size parameter for compatibility. by Jack Jansen · 24 years ago
  12. ca23d91 Made argc/argv processing work again under carbon. by Jack Jansen · 24 years ago
  13. 868f0c7 Oops, default type and creator were reversed. by Jack Jansen · 24 years ago
  14. 4901213 Removed assorted old ifdefs. by Jack Jansen · 24 years ago
  15. 021da55 Removed THINK_C support. by Jack Jansen · 24 years ago
  16. d9f6e92 Removed THINK_C support. Added a CARBON indicator to the version string. by Jack Jansen · 24 years ago
  17. 33d1ad2 Replaced GetFInfo and SetFInfo calls with FspGetFInfo and FspSetFInfo calls, which are carbon-compatible. by Jack Jansen · 24 years ago
  18. ee6eeb1 Removed (within an #ifdef) Carbon-incompatabilities: by Jack Jansen · 24 years ago
  19. bb6d83a Removed (within an #ifdef) Carbon-incompatabilities: by Jack Jansen · 24 years ago
  20. 14cd750 Fixed callback function arguments to be carbon-compatible. by Jack Jansen · 24 years ago
  21. 9cfce18 GUSI 2.0.5 has a non-functional getsockname() if you use Open Transport. For now the workaround is to only enable MacTCP sockets. by Jack Jansen · 24 years ago
  22. 0c6d037 Removed string-exception preference, added tabcheck and NavService preference, upped version number. by Jack Jansen · 24 years ago
  23. 850d118 Got rid of w/MSL in the version string. by Jack Jansen · 24 years ago
  24. 69652f8 Moved to the Compat folder (in case anyone still wants to try MPW building), it hasn't been used for years. by Jack Jansen · 24 years ago
  25. 6a06680 Removed, the core-python getmtime works fine with GUSI2. by Jack Jansen · 24 years ago
  26. ee08104 Made the GUSI options work again with GUSI 2. by Jack Jansen · 24 years ago
  27. 2d1306b Started on GUSI2 and threading support. by Jack Jansen · 24 years ago
  28. 3d75754 If there's an error in an fsspec argument raise MacOS.Error, not ValueError. by Jack Jansen · 25 years ago
  29. 205b435 Added initializer routine optionally to be used as PEF fragment initialization routine, which allows us to get at our own resource fork even if some shared library init routine opens other resource files. by Jack Jansen · 25 years ago
  30. b734ade Added PyMac_BuildOptStr255, which returns None on a null pointer. by Jack Jansen · 25 years ago
  31. 608b3fa Dummy functions which return unimpErr for lots of toolbox calls that are unavailable for 68K. This way we don't have to disable thm in bgen, so we by Jack Jansen · 25 years ago
  32. 8bb573e Oops, PLstring funcs should be "pascal". Funny this never caused problems before... by Jack Jansen · 25 years ago
  33. 8f5725a First bits and pieces of appearance support: an init routine, a global flag PyMac_AppearanceCompliant (exported thru MacOS). If USE_APPEARANCE by Jack Jansen · 25 years ago
  34. e742487 Bigger buffer size for C profiler (if profiling is enabled). by Jack Jansen · 25 years ago
  35. fac3008 Optimization: don't try to get a tabsize resource if we know the file by Jack Jansen · 25 years ago
  36. 68ecab4 Put the applet code inside USE_MAC_APPLET_SUPPORT ifdefs, to make 68k standalone Python compile. by Jack Jansen · 26 years ago
  37. 6b6e61d (finally) unified the interpreter and the applet as Just suggested ages ago. The by Jack Jansen · 26 years ago
  38. 26a69db put the preferences file in a folder called "Python" inside the prefs folder, just like the IDE does -- jvr by Just van Rossum · 26 years ago
  39. deff89c Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate. by Jack Jansen · 26 years ago
  40. 48a9c36 Mods by Just to allow aliases in sys.path entries by Jack Jansen · 26 years ago
  41. b93f521 Support for freezing packages (Just). by Jack Jansen · 26 years ago
  42. 87c485c Initialize the program name before adding shared library resources (Just). by Jack Jansen · 26 years ago
  43. 2e6445c Don't add the library file to the resource file chain if it is the by Jack Jansen · 26 years ago
  44. 7e1fb7c New about box, with the version mesage filled in in a text item, and by Jack Jansen · 26 years ago
  45. 017e0ff The PYD resource should now contain 2 strings: one for the ppc by Jack Jansen · 26 years ago
  46. abdf93c Re-indented properly (Just). by Jack Jansen · 26 years ago
  47. ac82b6a If the preference filename resource is empty don't try to open or by Jack Jansen · 26 years ago
  48. 1e2260f All import-related code has moved to macimport.c. by Jack Jansen · 26 years ago
  49. fa68b07 Print message when we load a PYC resource, if verbose import flag is on. by Jack Jansen · 26 years ago
  50. 0072b8d An applet with Popt and GUSI preferences but without alis resource by Jack Jansen · 26 years ago
  51. bbf4be2 Incorrect argument for PyMacBuildwide() by Jack Jansen · 26 years ago
  52. d58cd63 Added PyMac_{Get,Build}wide. These should support python longints at by Jack Jansen · 26 years ago
  53. efaada7 - Universal Headers 3 mods by Jack Jansen · 26 years ago
  54. 2136490 Bug fix for fast module location by Jack Jansen · 27 years ago
  55. a7a89eb Implemented nositepython and oldexceptions flags by Jack Jansen · 27 years ago
  56. c73f83c Fixed for new "import dir.module" semantics. Needs accompanying fix in by Jack Jansen · 27 years ago
  57. 36b983c Added old-exception and no-site-python options and balloon help by Jack Jansen · 27 years ago
  58. 5b3c971 The preference resource now has a version number by Jack Jansen · 27 years ago
  59. ac62569 sys.prefix and sys.exec_prefix are now set correctly. by Jack Jansen · 27 years ago
  60. 0c96887 Handle systemclicks ourselves, in stead of passing them to Sioux. This by Jack Jansen · 27 years ago
  61. a8441de Added (dummy) PyOS_FiniInterrupts by Jack Jansen · 27 years ago
  62. 7330b39 Adapted for 1.5a3: Py_SupressPrintingFlag is gone, and by Jack Jansen · 27 years ago
  63. 36ed506 Added PyMac_SetEventHandler which allows you to replace complete event by Jack Jansen · 27 years ago
  64. eda7863 Make imports faster on the Mac, by by Jack Jansen · 27 years ago
  65. caa7c46 - Restore SIOUX menubar just before exiting, if the console window is kept by Jack Jansen · 27 years ago
  66. e3ae0df Removed old scheduler parameterizing calls and replaced with something by Jack Jansen · 27 years ago
  67. a39f1b0 - Added Py_GetProgramFullPath by Jack Jansen · 27 years ago
  68. e44545f Workaround for bug in MSL and CWGUSI interaction that stopped the by Jack Jansen · 27 years ago
  69. 3089b7e - Various names in CodeFragments.h have changed by Jack Jansen · 27 years ago
  70. 08c3be3 Changed the few old routine names still used to the new ones by Jack Jansen · 27 years ago
  71. c587301 - Changed GestaltEqu.h to Gestalt.h by Jack Jansen · 27 years ago
  72. 7e94404 Only go into eventloop/interrupt check 10 times per second by Jack Jansen · 27 years ago
  73. 42218ce Added/updated copyright notices by Jack Jansen · 28 years ago
  74. 52ac037 Added PyMac_Initialize() routine, to be used by embedding programs (in by Jack Jansen · 28 years ago
  75. 8dc8a6e Mac-specific version of getmtime (for non-GUSI Python, which needs by Jack Jansen · 28 years ago
  76. 8c69321 Added profiler initialization/finalization code (if __profile__ is defined) by Jack Jansen · 28 years ago
  77. e1d8c9b Fixed FSSpec->pathname code to add colon if the fsspec points to a disk. by Jack Jansen · 28 years ago
  78. 26ee126 Got rid of nfullpath in favor of PyMac_GetFullPath (which was pretty by Jack Jansen · 28 years ago
  79. 8096daa When loading a PYC resource check whether the filename is the by Jack Jansen · 28 years ago
  80. 83c74df - Get preference filename from a resource by Jack Jansen · 28 years ago
  81. 0e06e7e About boxes should be at 20% of screen height, not halfway by Jack Jansen · 28 years ago
  82. d617c57 Changed default background yield time to 1 tick by Jack Jansen · 28 years ago
  83. 924ca85 Added macfs.FindApplication() to find application FSSpec given signature. by Jack Jansen · 28 years ago
  84. daed771 Py_GetProgramName turns out not to be obsolete (used by _tkinter). by Jack Jansen · 28 years ago
  85. 7d5f9e8 - Put all options in a struct by Jack Jansen · 28 years ago
  86. 3f7d2b4 - Rationalized override preferences support, by remembering by Jack Jansen · 28 years ago
  87. 3469e99 Python about box implemented. Slightly convoluted, since (a) we have by Jack Jansen · 28 years ago
  88. f12e709 Check that our override pythonpath is actually coming from the by Jack Jansen · 28 years ago
  89. b9bf6e2 Removed unused vars by Jack Jansen · 28 years ago
  90. f6865f7 - Fixed PyMac_DoYield: by Jack Jansen · 28 years ago
  91. 5bd85d9 Always call __initialize(), also on PPC by Jack Jansen · 28 years ago
  92. 7bbd1a5 Added void before main by Jack Jansen · 28 years ago
  93. bf05d4c Fixed command-. handling by Jack Jansen · 28 years ago
  94. a06f13d Fixed to work for ppc and cfm68k by Jack Jansen · 28 years ago
  95. 499a8af Removed debug printf by Jack Jansen · 28 years ago
  96. 3bc6fe6 Removed obsolete cfm68k ifdef (Guido) by Jack Jansen · 28 years ago
  97. 007fa82 Include config.h by Jack Jansen · 28 years ago
  98. cfadbd4 Guido: by Jack Jansen · 28 years ago
  99. 76ceece Guido: added some void's to declarations by Jack Jansen · 28 years ago
  100. 9ff06ce Guido: changed __sinit to __initialize for CFM68K. by Jack Jansen · 28 years ago