1. 53bafd9 PyOS_CheckStack now understands multiple threads. Other threads are not stack-checked, but at least they don't appear to always be out of stack. by Jack Jansen · 24 years ago
  2. 65c3ee0 Use same short banner message as unix/win Python. by Jack Jansen · 24 years ago
  3. 6be3480 Removed debug output. by Jack Jansen · 24 years ago
  4. 14a9171 Cheaper implementation of PyOS_CheckStack: only call StackSpace once and keep a sentinel in a static variable. by Jack Jansen · 24 years ago
  5. fb106c8 Removed temporary code to disable OT networking (this was a workaround for getpeername() not working in a previous release of GUSI, but it has been fixed). by Jack Jansen · 24 years ago
  6. d843a01 Removed temporary code that always set creator to SimpleText. by Jack Jansen · 24 years ago
  7. 5bdbabd Added more prototypes. by Jack Jansen · 24 years ago
  8. 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
  9. 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
  10. 74a1e63 Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef. by Jack Jansen · 24 years ago
  11. 41e25cc include macdefs.h for declaration of getwd, if non-gusi python. by Jack Jansen · 24 years ago
  12. bb7e213 PyMac_PromptGetFile and PyMac_GetDirectory don't exist in carbonpython. by Jack Jansen · 24 years ago
  13. e17fd2a Got rid of __SC__ ifdefs. by Jack Jansen · 24 years ago
  14. 1af5b08 Removed guesstabsize.c, which is obsolete. by Jack Jansen · 24 years ago
  15. 9ae898b ANSIfication step 2: make sure all needed prototypes are available, and all needed by Jack Jansen · 24 years ago
  16. d88296d ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO. by Jack Jansen · 24 years ago
  17. fe38d29 PyMac_FindModuleExtension now uses a size_t as its size parameter for compatibility. by Jack Jansen · 24 years ago
  18. ca23d91 Made argc/argv processing work again under carbon. by Jack Jansen · 24 years ago
  19. 868f0c7 Oops, default type and creator were reversed. by Jack Jansen · 24 years ago
  20. 4901213 Removed assorted old ifdefs. by Jack Jansen · 24 years ago
  21. 021da55 Removed THINK_C support. by Jack Jansen · 24 years ago
  22. d9f6e92 Removed THINK_C support. Added a CARBON indicator to the version string. by Jack Jansen · 24 years ago
  23. 33d1ad2 Replaced GetFInfo and SetFInfo calls with FspGetFInfo and FspSetFInfo calls, which are carbon-compatible. by Jack Jansen · 24 years ago
  24. ee6eeb1 Removed (within an #ifdef) Carbon-incompatabilities: by Jack Jansen · 24 years ago
  25. bb6d83a Removed (within an #ifdef) Carbon-incompatabilities: by Jack Jansen · 24 years ago
  26. 14cd750 Fixed callback function arguments to be carbon-compatible. by Jack Jansen · 24 years ago
  27. 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
  28. 0c6d037 Removed string-exception preference, added tabcheck and NavService preference, upped version number. by Jack Jansen · 24 years ago
  29. 850d118 Got rid of w/MSL in the version string. by Jack Jansen · 24 years ago
  30. 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
  31. 6a06680 Removed, the core-python getmtime works fine with GUSI2. by Jack Jansen · 24 years ago
  32. ee08104 Made the GUSI options work again with GUSI 2. by Jack Jansen · 24 years ago
  33. 2d1306b Started on GUSI2 and threading support. by Jack Jansen · 24 years ago
  34. 3d75754 If there's an error in an fsspec argument raise MacOS.Error, not ValueError. by Jack Jansen · 25 years ago
  35. 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
  36. b734ade Added PyMac_BuildOptStr255, which returns None on a null pointer. by Jack Jansen · 25 years ago
  37. 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
  38. 8bb573e Oops, PLstring funcs should be "pascal". Funny this never caused problems before... by Jack Jansen · 25 years ago
  39. 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
  40. e742487 Bigger buffer size for C profiler (if profiling is enabled). by Jack Jansen · 25 years ago
  41. fac3008 Optimization: don't try to get a tabsize resource if we know the file by Jack Jansen · 25 years ago
  42. 68ecab4 Put the applet code inside USE_MAC_APPLET_SUPPORT ifdefs, to make 68k standalone Python compile. by Jack Jansen · 25 years ago
  43. 6b6e61d (finally) unified the interpreter and the applet as Just suggested ages ago. The by Jack Jansen · 25 years ago
  44. 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
  45. deff89c Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate. by Jack Jansen · 26 years ago
  46. 48a9c36 Mods by Just to allow aliases in sys.path entries by Jack Jansen · 26 years ago
  47. b93f521 Support for freezing packages (Just). by Jack Jansen · 26 years ago
  48. 87c485c Initialize the program name before adding shared library resources (Just). by Jack Jansen · 26 years ago
  49. 2e6445c Don't add the library file to the resource file chain if it is the by Jack Jansen · 26 years ago
  50. 7e1fb7c New about box, with the version mesage filled in in a text item, and by Jack Jansen · 26 years ago
  51. 017e0ff The PYD resource should now contain 2 strings: one for the ppc by Jack Jansen · 26 years ago
  52. abdf93c Re-indented properly (Just). by Jack Jansen · 26 years ago
  53. ac82b6a If the preference filename resource is empty don't try to open or by Jack Jansen · 26 years ago
  54. 1e2260f All import-related code has moved to macimport.c. by Jack Jansen · 26 years ago
  55. fa68b07 Print message when we load a PYC resource, if verbose import flag is on. by Jack Jansen · 26 years ago
  56. 0072b8d An applet with Popt and GUSI preferences but without alis resource by Jack Jansen · 26 years ago
  57. bbf4be2 Incorrect argument for PyMacBuildwide() by Jack Jansen · 26 years ago
  58. d58cd63 Added PyMac_{Get,Build}wide. These should support python longints at by Jack Jansen · 26 years ago
  59. efaada7 - Universal Headers 3 mods by Jack Jansen · 26 years ago
  60. 2136490 Bug fix for fast module location by Jack Jansen · 27 years ago
  61. a7a89eb Implemented nositepython and oldexceptions flags by Jack Jansen · 27 years ago
  62. c73f83c Fixed for new "import dir.module" semantics. Needs accompanying fix in by Jack Jansen · 27 years ago
  63. 36b983c Added old-exception and no-site-python options and balloon help by Jack Jansen · 27 years ago
  64. 5b3c971 The preference resource now has a version number by Jack Jansen · 27 years ago
  65. ac62569 sys.prefix and sys.exec_prefix are now set correctly. by Jack Jansen · 27 years ago
  66. 0c96887 Handle systemclicks ourselves, in stead of passing them to Sioux. This by Jack Jansen · 27 years ago
  67. a8441de Added (dummy) PyOS_FiniInterrupts by Jack Jansen · 27 years ago
  68. 7330b39 Adapted for 1.5a3: Py_SupressPrintingFlag is gone, and by Jack Jansen · 27 years ago
  69. 36ed506 Added PyMac_SetEventHandler which allows you to replace complete event by Jack Jansen · 27 years ago
  70. eda7863 Make imports faster on the Mac, by by Jack Jansen · 27 years ago
  71. caa7c46 - Restore SIOUX menubar just before exiting, if the console window is kept by Jack Jansen · 27 years ago
  72. e3ae0df Removed old scheduler parameterizing calls and replaced with something by Jack Jansen · 27 years ago
  73. a39f1b0 - Added Py_GetProgramFullPath by Jack Jansen · 27 years ago
  74. e44545f Workaround for bug in MSL and CWGUSI interaction that stopped the by Jack Jansen · 27 years ago
  75. 3089b7e - Various names in CodeFragments.h have changed by Jack Jansen · 27 years ago
  76. 08c3be3 Changed the few old routine names still used to the new ones by Jack Jansen · 27 years ago
  77. c587301 - Changed GestaltEqu.h to Gestalt.h by Jack Jansen · 27 years ago
  78. 7e94404 Only go into eventloop/interrupt check 10 times per second by Jack Jansen · 27 years ago
  79. 42218ce Added/updated copyright notices by Jack Jansen · 28 years ago
  80. 52ac037 Added PyMac_Initialize() routine, to be used by embedding programs (in by Jack Jansen · 28 years ago
  81. 8dc8a6e Mac-specific version of getmtime (for non-GUSI Python, which needs by Jack Jansen · 28 years ago
  82. 8c69321 Added profiler initialization/finalization code (if __profile__ is defined) by Jack Jansen · 28 years ago
  83. e1d8c9b Fixed FSSpec->pathname code to add colon if the fsspec points to a disk. by Jack Jansen · 28 years ago
  84. 26ee126 Got rid of nfullpath in favor of PyMac_GetFullPath (which was pretty by Jack Jansen · 28 years ago
  85. 8096daa When loading a PYC resource check whether the filename is the by Jack Jansen · 28 years ago
  86. 83c74df - Get preference filename from a resource by Jack Jansen · 28 years ago
  87. 0e06e7e About boxes should be at 20% of screen height, not halfway by Jack Jansen · 28 years ago
  88. d617c57 Changed default background yield time to 1 tick by Jack Jansen · 28 years ago
  89. 924ca85 Added macfs.FindApplication() to find application FSSpec given signature. by Jack Jansen · 28 years ago
  90. daed771 Py_GetProgramName turns out not to be obsolete (used by _tkinter). by Jack Jansen · 28 years ago
  91. 7d5f9e8 - Put all options in a struct by Jack Jansen · 28 years ago
  92. 3f7d2b4 - Rationalized override preferences support, by remembering by Jack Jansen · 28 years ago
  93. 3469e99 Python about box implemented. Slightly convoluted, since (a) we have by Jack Jansen · 28 years ago
  94. f12e709 Check that our override pythonpath is actually coming from the by Jack Jansen · 28 years ago
  95. b9bf6e2 Removed unused vars by Jack Jansen · 28 years ago
  96. f6865f7 - Fixed PyMac_DoYield: by Jack Jansen · 28 years ago
  97. 5bd85d9 Always call __initialize(), also on PPC by Jack Jansen · 28 years ago
  98. 7bbd1a5 Added void before main by Jack Jansen · 28 years ago
  99. bf05d4c Fixed command-. handling by Jack Jansen · 28 years ago
  100. a06f13d Fixed to work for ppc and cfm68k by Jack Jansen · 28 years ago