Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
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
1c7aaa2 Added missing DECREF's in the error branches when creating a compressor or decompressor object. This required adding a flag to the struct which is true if initialisation was completed; on object destruction, deflateEnd() is only called if the flag is true. 29 January 1999, 21:49:34 UTC
9b0dc53 Define %descriptor.class, since it's used. 29 January 1999, 21:38:14 UTC
279ca75 Be a little smarter on some attribute values, making an assumption about the DTD. 29 January 1999, 21:35:50 UTC
3a7ff99 fixup_descriptors(): Change the way we look for descriptor nodes; this takes 5 minutes off the conversion of the whole tree by reducing the number of tree-traversals from 14 to 1. 29 January 1999, 21:31:12 UTC
3d05b1a initmain(): Nailed a memory leak. bimod must be DECREF'd! 29 January 1999, 21:30:22 UTC
666e600 Added the Doc/sgml/ directory to the tarball. 29 January 1999, 21:22:55 UTC
cb65781 Rewrite code that converts the little descriptor environments to build the right <signature>s and <description>. This seems to work a lot better now! 29 January 1999, 20:55:07 UTC
38a5a3b Use only the height to decide whether to zoom in or out. 29 January 1999, 20:44:45 UTC
7890203 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's leaf_exc flag to zero otherwise the name leaks memory. 29 January 1999, 20:29:49 UTC
75930b3 Added table entries for \funcline and \funclineni. 29 January 1999, 20:09:27 UTC
e294cf6 Add abspath() 29 January 1999, 18:05:18 UTC
1804dc3 Document abspath() (implementation is forthcoming). 29 January 1999, 18:05:05 UTC
f339632 Define a general entity "&version;" that can be used as the current major version of the Python interpreter. This is \version in the LaTeX format of the documentation. 29 January 1999, 16:42:37 UTC
fdfd50f Convert <version> to &version;. 29 January 1999, 16:29:25 UTC
53ea134 doh! added missing comma (will check before committing in the future ;-) -- jvr 29 January 1999, 16:28:55 UTC
7859f17 A few scribbles toward the DTD. 29 January 1999, 16:21:20 UTC
9f08666 added path entry for NumPy -- jvr 29 January 1999, 16:21:04 UTC
6bcc53c Standard ISO entities. 29 January 1999, 16:20:24 UTC
d2d2b20 Pythonpath converted to Rez source, and vers resource removed from bundle to its own Rez source file. With these changes various resources are all set automatically from .h files. 29 January 1999, 16:15:52 UTC
2eb07f0 The OASIS Exchange table model public text. 29 January 1999, 15:57:31 UTC
00d225e Correct typo (Py_MethodDef doesn't exist). Reported by Uwe Zessin. 29 January 1999, 14:39:12 UTC
6a71572 Projects moved to Mac:Build. The macfreeze projects still need sorting out. 29 January 1999, 13:33:51 UTC
8f67bce Fixed an absolute path. 29 January 1999, 13:30:03 UTC
f25813a Re-committed as AppleSingle 29 January 1999, 12:06:21 UTC
7dab6af Update the docstring. Lots of changes to get the paragraph marking to work, and not go into an infinite recursion. Start to rationalize markup of method signatures; not complete. find_all_elements(): similar to getElementsByTagName(), but operates on the not-quite-legal fragments we deal with here. Simplifies several individual transforms. fixup_sectionauthors(): Convert \sectionauthor items to <author> just after the <section>'s <title>. 28 January 1999, 23:59:58 UTC
3f3b096 Added table entries for \methodline, \methodlineni. 28 January 1999, 23:49:37 UTC
ae3e574 "numberic" --> "numeric", two places 28 January 1999, 23:21:49 UTC
1453a8c Constructor arguments for classes should be called <args>. 28 January 1999, 23:10:48 UTC
b7ebb83 Make sure the Tcl variables are shared between windows. 28 January 1999, 22:24:30 UTC
back to top