- 05 Mar, 2003 11 commits
-
-
Just van Rossum authored
in packages correctly.
-
Jack Jansen authored
by putting the help book in an array. Somehow the fact that Python.app (and, hence, pythonw) got an automatic help menu messed up Tkinter's handling of the help menu.
-
Jack Jansen authored
-
Just van Rossum authored
- The applet logic has been replaced to bundlebuilder's bootstrap script - Due to Apple being extremely string about argv[0], we need a way to specify the actual executable name for use with sys.executable. See the comment embedded in the code.
-
Martin v. Löwis authored
and not as a side effect of setlocale. Expose it as sys.getfilesystemencoding. Adjust test case.
-
Jack Jansen authored
-
Jack Jansen authored
AppBuilder, and set the default type to BNDL (overridden in AppBuilder). This surfaced when trying to build help bundles.
-
Michael W. Hudson authored
out a month's worth of checkins to libstdtypes.tex (including my extended slice docs). I think this checkin merges them all back in, but if you make one of these checkins: revision 1.97 date: 2002/06/14 00:27:13; author: nnorwitz Use \code{True} (or False) instead of true/false. Not sure if code is correct, but that is what's in this file. I've seen \constant{True} in other places. ---------------------------- revision 1.95 date: 2002/05/22 20:39:43; author: bwarsaw Jack's documentation for the U mode character on the file() constructor, vetted by Barry. ---------------------------- revision 1.94 date: 2002/05/21 18:19:15; author: rhettinger Patch 543387. Document deprecation of complex %, //,and divmod(). ---------------------------- revision 1.93 date: 2002/05/15 15:45:25; author: rhettinger Added missing index entries for mapping methods. Closes patch #548693. some checking may be in order.
-
Michael W. Hudson authored
checking them in? Oh well, this fixes various obvious mistakes and changes a subsubsubsection (which doesn't exist) into a subsubsection (which does). I'm not sure this matches the intent, but it seems to read OK on a quick skim.
-
Martin v. Löwis authored
-
Jack Jansen authored
-
- 04 Mar, 2003 9 commits
-
-
Andrew M. Kuchling authored
-
Just van Rossum authored
fails, as discussed in patch #683592.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Jack Jansen authored
of the older (and, according to some manpages, deprecated) "test -h".
-
Kurt B. Kaiser authored
breakpoints, which are not implemented in the shell
-
Kurt B. Kaiser authored
Modify subprocess to print a reasonable message upon receiving a 'quit' or 'exit'
-
Tim Peters authored
-
- 03 Mar, 2003 18 commits
-
-
Neal Norwitz authored
in addition to createfilehandler and creaetetimerhandler.
-
Andrew M. Kuchling authored
This patch makes it work again.
-
Kurt B. Kaiser authored
Eliminate extra blank line in shell output. Caused by stdout not being flushed upon completion of subprocess' Executive.runcode() when user code ends by outputting an unterminated line, e.g. print "test",
-
Just van Rossum authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Just van Rossum authored
- Implement the behavior as specified in PEP 277, meaning os.listdir() will only return unicode strings if it is _called_ with a unicode argument. - And then return only unicode, don't attempt to convert to ASCII. - Don't switch on Py_FileSystemDefaultEncoding, but simply use the default encoding if Py_FileSystemDefaultEncoding is NULL. This means os.listdir() can now raise UnicodeDecodeError if the default encoding can't represent the directory entry. (This seems better than silcencing the error and fall back to a byte string.) - Attempted to decribe the above in Doc/lib/libos.tex. - Reworded the Misc/NEWS items to reflect the current situation. This checkin also fixes bug #696261, which was due to os.listdir() not using Py_FileSystemDefaultEncoding, like all file system calls are supposed to.
-
Ken Manheimer authored
introduced when shifting around some code, and added some redundancy to reduce chances of hitting the wrong source code. (This is experimental - it will improve the accuracy, but will reduce the ability of the user to deliberately select the buffer they want the buffer grubbing stuff to find. I think the accuracy improvement will be worth it, but am not sure, so may remove this.)
-
Jack Jansen authored
-
Jack Jansen authored
because we have no easy way to convert the python encoding string to a CF encoding parameter.
-
Jack Jansen authored
strings to CF strings. Fixes 682215.
-
Michael W. Hudson authored
[ 555817 ] Flawed fcntl.ioctl implementation. with my patch that allows for an array to be mutated when passed as the buffer argument to ioctl() (details complicated by backwards compatibility considerations -- read the docs!).
-
Jack Jansen authored
EasyDIalogs methods will call it if needed. Fixes #684975.
-
Jack Jansen authored
exception of the ProgressBar, which I think is okay to show in the background). This is a prerequisitite for the fix of #684975.
-
Martin v. Löwis authored
disable this function in threaded Tcl. Likewise for creaetetimerhandler. Fixes #692416.
-
Martin v. Löwis authored
-
Ken Manheimer authored
-
Ken Manheimer authored
the reported path. (Eg, precompiled scripts with a file path suitable for a different host, scripts actually running on a remote system or with no valid path, like Zope through-the-web python scripts.) On failing to find the code on the reported path, pdbtrack takes the function name and looks through the buffers, from most to least recent, seeking the first python-mode buffer that either is named for the function or has a definition (def or class) for that function. So to get source tracking for code that's not located where the path indicates, you put a copy of the script in a buffer, and pdbtrack will find it. Also, fixed a small bug so pdbtrack now properly presents the overlay arrow when you run the pdb 'w'here command.
-
- 02 Mar, 2003 2 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
-