https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
2d1f81e do_cmd_maketitle(): Small nit in creating the "title page". 09 February 1999, 16:03:31 UTC
1a4c539 Back out some of the fine tuning; something in all that interacted badly in practice and botched the whole thing. Wasn't obvious when looking at the local effects (which worked), but completely broke entire pages. ;-( 09 February 1999, 15:31:52 UTC
d1f66dc Fix buglet in load_put -- the test for bad readline result tested the wrong variable. 08 February 1999, 22:38:25 UTC
c54367a Uwe Zessin. 08 February 1999, 22:29:40 UTC
ec119a3 Don't crash if a window no longer exists. 08 February 1999, 22:27:49 UTC
5ec13c5 Restructured a bit. 08 February 1999, 22:27:18 UTC
7d83a5e The variable TESTPATH should be initialized to empty. The test code is now accessed as a package. 08 February 1999, 21:49:22 UTC
ce67f06 Update documentation to reflect changes to Queue.py by Tim Peters. 08 February 1999, 18:43:13 UTC
9e1721f Tim Peters: + Implements a put_nowait method. + Adds a corresponding Queue.Full exception. + Simplifies the implementation by adding optional "block" args to get() and put(), and makes the old get_nowait() and new put_nowait() one-line redirections to get() and put(). + Uses (much) simpler logic for the nowait cases. + Regularizes the doc strings to something closer to "Guido style" <wink>. + Converts two stray tabs into spaces. + Removes confusing verbiage about the queue "not being available" from the docstrings -- never knew what that meant as a user, and after digging into the implementation still didn't know what it was trying to say. 08 February 1999, 18:34:01 UTC
68de064 The writelines() function was never tested and contained numerous bugs (including a docstring saying "blah"). Fixed all this. (Please review for potential memory leaks!) 08 February 1999, 17:03:27 UTC
c55b0ca Put a try-except around the "image delete" call in Image.__del__ to avoid tracebacks when the root is destroyed before the image object. 08 February 1999, 15:26:49 UTC
7f1653c new dangerous script: it removes all apps (except sys.executable), shared libs, (x)SYM files and xxx Data folders (in case xxx.prj exists) -- jvr 07 February 1999, 16:36:22 UTC
e058189 Added Ctl.as_Control and Menu.as_Menu methods, which take a resource as argument and return a Control or Menu object. 07 February 1999, 14:02:03 UTC
b068789 Added a define USE_CORE_TOOLBOX, which includes six core toolbox modules into the config file. This define is also automatically set if USE_TOOLBOX is defined. 07 February 1999, 14:00:50 UTC
fd44e3d Added a define USE_CORE_TOOLBOX, which includes six core toolbox modules into the config file. 07 February 1999, 13:59:49 UTC
fa155a1 Don't create symlinks to toolbox modules any more. 07 February 1999, 13:59:06 UTC
496cae7 Moved Ctl, Dlg, Menu, Qd, Res and Win modules to PythonCore. Moved other toolbox modules to their own .slb file. 07 February 1999, 13:57:11 UTC
6d3d6e4 Added Extensions:img:Mac to default sys.path 06 February 1999, 17:56:59 UTC
6c45a82 - img modules are no longer in PlugIns folder - Added a dependency on toolboxmodules to icglue.cfm68k 06 February 1999, 17:46:21 UTC
8eea5ba img modules are no longer in PlugIns folder. 06 February 1999, 17:44:28 UTC
8f81a22 Some weird symbol (M_I386) was used to decide whether to include the audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.) 05 February 1999, 22:34:57 UTC
d42e46e Ehm, when we don't need to byteswap the data, don't go through an array object at all. 05 February 1999, 22:32:11 UTC
ebb9c92 Two important fixes: (1) on a little-endian platform, don't byteswap; (2) in _patchheader(), there was a missing self._file argument to a _write_long() call. 05 February 1999, 22:28:17 UTC
2aaeb52 fixed problem with "reloading" sub-sub-modules -- jvr 05 February 1999, 21:58:25 UTC
14162ab The encoding type was wrong, I think. 05 February 1999, 20:57:44 UTC
2013ba4 Should open files in binary mode! Also finally get rid of some obsolete commented-out access statements. A note about the previous checkin: I believe it's correct, but I found something strange: the file Lib/test/audiotest.au in the Python distribution was evidently encoded in u-LAW format but had its encoding set to 2, i.e. linear-8. I hope that this is a mistake caused by some conversion program that produced this .au file; I just found it on a website. 05 February 1999, 20:55:16 UTC
dfb4e24 Respond to suggestion from "Albert" <hat@se-46.wpa.wtb.tue.nl> to add document titles to the list of files. Also added total page count and a note that comments should be directed to python-docs@python.org. 05 February 1999, 20:50:59 UTC
5ebeea0 Shouldn't be treating linear-8 as u-law! 05 February 1999, 19:59:27 UTC
2ff880e More magic to tighten up a little of the formatting. 05 February 1999, 18:31:29 UTC
f9918f2 Minor nit to prevent dropping a space in the HTML generation. 05 February 1999, 18:30:49 UTC
e600578 Add winsound -- by Toby Dickenson with permission. 04 February 1999, 22:40:42 UTC
f9ffb03 Jim Fulton: this fixes seg faults with bad pickles like "c". 04 February 1999, 14:54:04 UTC
d673d48 Document sameopenfile(), samestat(). 03 February 1999, 22:31:30 UTC
0256c1f Document splitdrive(). For all split*(), these split path *into* pairs, not split path *in* pairs. "Into" can be used for transformations, "in" is for containment. 03 February 1999, 19:24:44 UTC
ead9d8d New test for ntpath module 03 February 1999, 17:21:21 UTC
534972b New splitdrive() that knows about UNC paths (e.g., network paths like \\host\mountpoint\dir\file). By Larry Hastings. Also cleaned up some docstrings. 03 February 1999, 17:20:50 UTC
0c9608c Portability fix for [f]statvfs() return tuple: no longer return the f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. 03 February 1999, 16:32:37 UTC
c256ece Partly updated to reflect the new organization and the availability of CVS access. Will still need a bit of work when all plugins are separated, probably. 03 February 1999, 13:09:27 UTC
33a5d7e Just's script to find non-7-bit-clean charactres in a source tree (slightly modified by Jack to skip files that are binary despite the TEXT type). 03 February 1999, 12:07:14 UTC
7bcd84d updated to the new numpy build setup -- jvr 02 February 1999, 23:58:50 UTC
579ed77 Never mind, this belongs in the PC subdirectory, and besides Toby Dickenson sent me a more functional (if lower level) wrapper around PlaySound. 02 February 1999, 23:41:44 UTC
edab939 re-checkin with "ISO-8859 translation" turned on. 02 February 1999, 22:31:05 UTC
b8bf163 added some comments 02 February 1999, 22:27:41 UTC
2e3f7be Fredrik Lundh fixes Sjoerd's patch... """Sjoerd's version stores unbound methods. that's not good enough ;-) Here's an alternative implementation of fixdict.""" 02 February 1999, 22:15:24 UTC
dbd37df Remove three items. 02 February 1999, 19:03:09 UTC
215fe2f Fix the os/posix documentation issue. 02 February 1999, 19:02:35 UTC
dda199b Moved \versionadded to end of description sections. 02 February 1999, 19:01:37 UTC
12ba786 Moved posixpath to os.path. 02 February 1999, 19:00:37 UTC
560bcae Added posixpath, winsound. 02 February 1999, 18:59:58 UTC
a9b9bf9 Change this to be os.path. Use consistent parameter naming with the os documentation (paths always named "path" or "path1", "path2"...). 02 February 1999, 18:58:33 UTC
bb79438 This seems to fix a problem with targeting from the indexes. 02 February 1999, 18:57:12 UTC
2116d98 Make \versionadded and \versionchanged less prominant -- neither bold nor a separate paragraph. 02 February 1999, 18:02:48 UTC
d0bceee Move \versionadded macros to end of descriptions. 02 February 1999, 18:00:40 UTC
09da65e Patch by Sjoerd Mullender to placate /F: Clarified (hopefully :-) the documentation of elements and attributes variables. 02 February 1999, 17:55:12 UTC
cc2c291 Patch by Sjoerd Mullender to placate /F: Fix leaking of instances by removing the elements variable that we created on closing the parser. The elements variable is now created in the reset() method, so that the sequence close(); reset(); ... works. Also, add the name of the entity reference that wasn't found to the error message. 02 February 1999, 17:54:38 UTC
7e3535c Added documentation to the docstrings for the W*() functions that take a process exit status as a parameter. 02 February 1999, 16:37:11 UTC
26a69db put the preferences file in a folder called "Python" inside the prefs folder, just like the IDE does -- jvr 02 February 1999, 15:49:03 UTC
9202755 Replaced by Pythonpath.r 02 February 1999, 15:33:45 UTC
2cc340d Windows sound playing module, by Fredrik Lundh. 02 February 1999, 15:14:37 UTC
246bc17 Add _P_WAIT etc. for NT. 01 February 1999, 23:54:31 UTC
67c65b2 Special-case _P_WAIT etc. for NT. 01 February 1999, 23:52:29 UTC
8e47306 Add current dir or paths of file args to sys.path. 01 February 1999, 23:06:17 UTC
a6dff3e spawnv, spawnve docstrings: added mode parameter; this is required! 01 February 1999, 22:24:40 UTC
dbd72a4 Added module synopsis. 01 February 1999, 21:27:59 UTC
68a8c69 Take out just about everything and refer the reader to the os module. 01 February 1999, 20:23:02 UTC
b23ee1d Make the text generic, and call it os.path instead of posixpath. 01 February 1999, 20:20:39 UTC
59d8b73 Remove all references to posixpath; only refer to os.path. Formalize the xstat() documentation. 01 February 1999, 20:19:38 UTC
2e9e0df Add canonic() function -- for brand new bdb.py feature. 01 February 1999, 19:35:33 UTC
14b2d30 Protect against accessing an empty stack. 01 February 1999, 19:34:53 UTC
6aa4257 PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString() was appended to a list. Lists are reference count neutral, so the string must be DECREF'd. Also added some checks for the return value of PyList_Append(). Note: there are still some memory problems reported by Purify (I get two Array Bounds Reads still and an Unitialized Memory Read). Also, in scanning the code, there appears to be some potential problems where return values aren't checked. To much to attack now though. 01 February 1999, 17:09:00 UTC
a61f4ac better sys.path munging when running scripts -- jvr 01 February 1999, 16:34:08 UTC
98be47e OSError description: "as the by the" --> "as the" 01 February 1999, 16:17:40 UTC
e6a3aa6 Oops, the patch for NeXT always replaced waitpid() with wait4() -- this doesn't exist everywhere, so go back to using #ifdef NeXT. 01 February 1999, 16:15:30 UTC
fe64935 Patch by Sjoerd Mullender for better compatibility with the version from Python 1.5.1: If after __init__ finishes no new elements variable was created, this patch will search the instance's namespace for all attributes whose name start with start_ or end_ and put their value in a new elements instance variable. 01 February 1999, 15:35:13 UTC
79e0223 removed old IDE stuff -- jvr 01 February 1999, 01:38:20 UTC
e1fb04f minor cleanup of last patch -- jvr 01 February 1999, 01:29:17 UTC
9d609b4 Added PythonIDE to the applet list; added destination filename support for applets -- jvr 01 February 1999, 01:21:18 UTC
e590a95 removed turd resources left by my former MacCVS client -- jvr 01 February 1999, 01:19:16 UTC
99ec5a5 Add $(APPLICATION) or :Mac:Tools:IDE at the very start of sys.path to improve startup time -- jvr 31 January 1999, 23:17:56 UTC
a7a7193 There are now three possible ways to run the IDE: - this file dropped onto the interpreter - applet built by BuildApplet (contains only __main__) - applet built by BuildIDE (contains all IDE modules) 30 January 1999, 23:49:45 UTC
4f0d1f5 ??? adding this file somehow failed -- jvr 30 January 1999, 22:40:26 UTC
40f9b7b First Checked In. 30 January 1999, 22:39:17 UTC
f59a89b added ntpath and win32api to MAC_MAYMISS_MODULES -- jvr 30 January 1999, 22:33:40 UTC
49ef0b7 changed chars in source > chr(127) to ASCII: CVS corrupted them -- jvr 30 January 1999, 22:32:40 UTC
874f87b set 'preload' attribute for __main__ PYC resource -- jvr 30 January 1999, 22:31:26 UTC
1cea804 skip 'vers' resource when copying resources from templeate -- jvr 30 January 1999, 21:20:10 UTC
2607a44 added some try/excepts so it also works when certain projects/folders are not available -- jvr 30 January 1999, 18:27:12 UTC
f1ae0eb Removed NumPy install code: it's obsolete -- jvr 30 January 1999, 17:50:15 UTC
786cb11 Fixed two typo's (Plugins -> PlugIns) and added some explicit path munging to allow the script to also work from the Scripts folder. Somehow either of these fixes solved a problem where it suddenly refused to make a PythonCore alias in the Extensions folder. -- jvr 30 January 1999, 17:46:34 UTC
292f4c4 added "delay console window until needed" preference 30 January 1999, 15:25:30 UTC
245d179 Added pascal-style string name of preference file resource, and bracketed C struct declarations with #ifndef rez 30 January 1999, 13:21:24 UTC
c0780ac From: Mike Orr <mso@oz.net> In the docstring of ConfigParser.py (Python 1.5.2b1): read(*filenames) -- read and parse the list of named configuration files should be: read(filenames) -- read and parse the list of named configuration files The method accepts a list, not a bunch of positional arguments. Which is good, the list is much more convenient. 30 January 1999, 04:35:47 UTC
ca44236 Embarrassing: remove a debug print statement from set_break() for the second time! 29 January 1999, 22:39:32 UTC
7281b3b Updated comments on version of XML package needed. 29 January 1999, 22:35:23 UTC
9787bea Use win32api.GetFullPathName(path) if it exists to implement abspath(). 29 January 1999, 22:30:41 UTC
28e66d1 Added the info tarball to the tarballs target. Added the README to the info tarball. 29 January 1999, 22:23:25 UTC
b2c59ab A README file for the info tarball. 29 January 1999, 22:22:03 UTC
1dd152d Added support to handle \versionadded in a reasonable way. 29 January 1999, 22:12:29 UTC
170e190 Support a canonical() method, implementable by a derived class, to be applied to all filenames before they are compared, looked up in the breaks dictionary, etc. The default implementation does nothing -- it's implented as fast as possible via str(). A useful implementation would make everything a absolute, e.g. return os.path.normcase( os.path.abspath(filename)). 29 January 1999, 22:03:51 UTC
f761287 setup_readline(): Added a comment about memory leak (reported by Purify) being caused by a bug in the readline library. Nothing we can do about it. Cause: readline_initialize_everything() throws away the return value from rl_read_init_file(), but that happens to be the last reference to a dynamically allocated char*. 29 January 1999, 21:55:03 UTC
back to top