- 02 Aug, 2002 37 commits
-
-
Jack Jansen authored
etc. Still not enough, probably, but better than what we had.
-
Jack Jansen authored
-
Jack Jansen authored
surprises later (the IDE won't work without waste).
-
Guido van Rossum authored
a c-cedilla in one of the docstrings.
-
Fred Drake authored
-
Tim Peters authored
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
don't use division at all.
-
Fred Drake authored
-
Guido van Rossum authored
week.
-
Fred Drake authored
-
Guido van Rossum authored
week.
-
Guido van Rossum authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Skip Montanaro authored
functions. In this case, calling dbm.open("foo", "c") actually creates a file named "foo.db".
-
Skip Montanaro authored
-
Guido van Rossum authored
-
Guido van Rossum authored
week.
-
Skip Montanaro authored
should always have it.
-
Jack Jansen authored
-
Jack Jansen authored
Cater for that by working from sys.executable.
-
Jack Jansen authored
argv emulation (i.e. if the end user drops files and folders on the applets these will show up in sys.argv) BuildApplet will add the required code to the applet bundle, in __rawmain__.pyc. This code is compiled from appletrawmain.py, it creates sys.argv, cleans up most of the mess and executes either __main__.py or __main__.pyc.
-
Jack Jansen authored
-
Jack Jansen authored
actual script to run in case we are running from an applet. If we are indeed running an applet we skip the normal option processing leaving it all to the applet code. This allows us to get use the normal python binary in the Python.app bundle, giving us all the normal command line options through PythonLauncher while still allowing Python.app to be used as the template for building applets. Consequently, pythonforbundle is gone, and Mac/Python/macmain.c isn't used on OSX anymore.
-
Jack Jansen authored
-
Jack Jansen authored
- The applet .rsrc file should be called python.rsrc, it is not based on the applet name.
-
Michael W. Hudson authored
[ 589427 ] standard include paths on command line
-
Jack Jansen authored
- "Open Document" appleevent is "odoc", not "open".
-
Jack Jansen authored
one .app nowadays) and fixed it to work.
-
Jack Jansen authored
during startup of a program. This module will replace the C code in macgetargv.c so we can get rid of the special macmain.c for OSX Python.app.
-
Jack Jansen authored
-
Tim Peters authored
at random, and replaces the elements at those positions with new random values. I was pleasantly surprised by how fast this goes! It's hard to conceive of an algorithm that could special-case for this effectively. Plus it's exactly what happens if a burst of gamma rays corrupts your sorted database on disk <wink>. i 2**i *sort ... %sort 15 32768 0.18 ... 0.03 16 65536 0.24 ... 0.04 17 131072 0.53 ... 0.08 18 262144 1.17 ... 0.16 19 524288 2.56 ... 0.35 20 1048576 5.54 ... 0.77
-
Mark Hammond authored
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
-
Skip Montanaro authored
and age of rampant computer breakins I imagine there are plenty of systems with telnet disabled. Successful check of at least one getservbyname() call is required for success
-
- 01 Aug, 2002 3 commits
-
-
Jack Jansen authored
us to completely decouple the framework from the executable, so we can use a two-level namespace. - Do framework builds with a twolevel namespace. - Reorganized the code that creates the minimal framework in the build directory, to make it more robust against incomplete frameworks (from earlier aborted builds, or builds of previous Python versions).
-
Jack Jansen authored
be invoked by PythonLauncher when needed. Also changed the names of various variables in the Makefile to match what the main Makefile has.
-
Jack Jansen authored
PythonLauncher.app has taken that responsibility over.
-