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