https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
71606f8 This commit was manufactured by cvs2svn to create tag 'r15a2'. 15 May 1997, 12:24:53 UTC
c8fba8e Add pthred-std define for Linux. 15 May 1997, 12:24:53 UTC
8766dfd Regenreated for MSL 15 May 1997, 11:18:32 UTC
b83b46d MSL errno.h has moved some errors around, and doesn't document them in comments, so we do that ourselves. 15 May 1997, 11:18:13 UTC
4346716 Bump level to 1.5a2. 14 May 1997, 21:41:46 UTC
6ae5d3d Update description of "make test" to new test harness. Change DEC OSF/1 to DEC Unix. Add note about AIX bug in 4.2.1. 14 May 1997, 21:39:05 UTC
4dfd458 Fix typo in error reporting. 14 May 1997, 21:38:03 UTC
c1c96d1 Fix hex tests for 64-bit machines. 14 May 1997, 21:37:23 UTC
8cd70c3 Instructions updated for 1.5. Added the important note to set the run-library to multithreaded dll. 14 May 1997, 21:35:02 UTC
201afe5 Add -Olimit 1500 to OPT if CC supports it. 14 May 1997, 21:14:44 UTC
2b4d280 Suppress fork part of socket test when we can't fork. 14 May 1997, 21:12:51 UTC
9348bf8 Updated, mappingobject -> dictobject plus some other minor things. 14 May 1997, 20:47:15 UTC
1cbdfb9 Add sections for PIL (Fred Lundh). 14 May 1997, 19:22:11 UTC
4a0694d Fix sys.platform test -- on Win, it is 'win32', not 'win'. 14 May 1997, 19:06:36 UTC
0ba7e59 More rational implementation of get_qualified_path() -- search along sys.path instead of assuming __file__ works. 14 May 1997, 18:57:21 UTC
e61093c Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). This broke cPickle. 14 May 1997, 18:43:29 UTC
fcc7704 Typo! \\lib\\<path> should be .\\lib\\<path> 14 May 1997, 18:32:32 UTC
fc4f503 Fix showstopping bug (^ wouldn't match after \n). Jeffrey Ollie. 14 May 1997, 18:27:51 UTC
34570d7 A new set of symbols. Hopefully this will be sufficient, I have no idea how this is used, really. 14 May 1997, 17:59:37 UTC
af5dfb4 One last rename glitch: import_modules -> _PyImport_Modules. 14 May 1997, 17:36:12 UTC
39d6ae7 New makefile, for 1.5, with CRLF 14 May 1997, 15:54:27 UTC
445efa9 Add a cast to a malloc to shut up the DEC Unix compiler. 14 May 1997, 15:30:32 UTC
2ec9031 Subsumed mappingobject.h in dictobject.h. 13 May 1997, 21:23:32 UTC
9637432 Renamed mappingobject.c to dictobject.c. 13 May 1997, 21:05:38 UTC
e4766f6 The usual 13 May 1997, 21:04:26 UTC
a9e7a81 Renamed from mappingobject.c to dictobject.c. (Sorry Jack, all your projects will have to be changed again. :-( ) 13 May 1997, 21:02:11 UTC
93ad0df Faster floating point allocator, same idea as the int allocator. By Aaron Watters. 13 May 1997, 21:00:42 UTC
0609f19 A completely new Rat.py by Sjoerd. 13 May 1997, 19:25:57 UTC
e0332c7 Longer default PYTHONPATH will find test, tkinter, and shared modules in the build tree, when the current directory is the build tree root. 13 May 1997, 19:21:22 UTC
df4549e Remove a spurious ^M. 13 May 1997, 19:20:18 UTC
7d3246d Keep gcc -Wall happy. 13 May 1997, 19:19:41 UTC
ad16471 Untested changes by Skip Montanaro to have an optional limit on the size of uploads to POST (new version of these patches). 13 May 1997, 19:03:23 UTC
de8d6d7 Use compile-time test for 64-bit hardware instead of run-time test. This silences some compilers. 13 May 1997, 18:00:44 UTC
c5d14a6 Added $(srcdir)/ prefix to python.exp for AIX. No idea if this actually works... 13 May 1997, 17:59:29 UTC
054b3a2 TESTPATH is no longer needed 13 May 1997, 17:58:16 UTC
2ef21ef Removed symbols that are no longer defined. Still have to find a way to add symbols that *are* defined... 13 May 1997, 17:56:38 UTC
4917d93 Keep picky compilers happy. 13 May 1997, 17:53:34 UTC
d6353e2 Support for various versions of the pthread draft. 13 May 1997, 17:51:13 UTC
5f15b96 (int) cast for strlen() to keep picky compilers happy. 13 May 1997, 17:50:01 UTC
725a67e Regenerated on newer Solaris version 13 May 1997, 17:45:56 UTC
f0ee937 Removed out-of-date TODO file 13 May 1997, 17:03:52 UTC
af647dd Use ProgressBar to show progress in stead of print 13 May 1997, 15:42:26 UTC
450ae9f Don't free the MacOS_Splash() dialog twice... 13 May 1997, 15:41:48 UTC
48c5527 Add a few more BringToFont calls 13 May 1997, 15:41:07 UTC
79b5bb4 Export a few more New/Convert routines, on Just's request 13 May 1997, 11:28:03 UTC
141f9a0 Regenrated from CW11 IDE 13 May 1997, 11:27:19 UTC
0e351f3 Finally found a wat to set a file nonblocking that works on Irix, Solaris and Linux: use os.O_NONBLOCK. 12 May 1997, 22:15:52 UTC
d776362 Another change suggested by Donn Cave -- forget "step 5", which searches /usr/local, /usr and /. 12 May 1997, 20:53:23 UTC
573a24a Fix problem reported by Donn Cave: if VPATH is an absolute path, it would always be a hit. Prevent this by only using VPATH if we know we are in the build directory. 12 May 1997, 20:49:39 UTC
4a807f5 Fix big ineficciency in regobj.search/match (introduced by Barry in an otherwise laudible attempt to rationalize the argument parsing): it would save a copy of the original string instead of a reference to it. Go back to saving a reference, but keep the "s#" format (using a hack that involves two argument parsing steps, first using "O", then using "s#"). 12 May 1997, 16:04:09 UTC
1d63d8c Fixes to progress bar by SDM, modified by Jack: - Window has a titlebar, and title() changes it - The label is changed with label() - The window is now movable-modal - Cancel is now called Stop, and works. 12 May 1997, 15:44:14 UTC
789a161 Add optional 'sizehint' argument to readlines(). After approximately this many bytes have been read, readlines stops. Because of buffering, the amount of bytes read is usually at least 8K more than the hint. Also changed read() and readline() to use PyArg_ParseTuple(). (Note that the *previous* checkin also fixed error handling and narrowed the range of thread unblocking for all methods using fread().) 10 May 1997, 22:33:55 UTC
6263d54 Rewrite readlines() to speed it up -- about a factor of 2 on my Indigo2, reading a 9Meg file from the local disk. 10 May 1997, 22:07:25 UTC
5449b6e Speed up read() (i.e. read till EOF) considerably by doing a stat() to see if we can guess the #bytes until the end of the file. If we can't, increment the buffer size increments up to 0.5Meg to avoid realloc'ing too much. 09 May 1997, 22:27:31 UTC
5878b66 This commit was manufactured by cvs2svn to create tag 'r15a1'. 09 May 1997, 03:21:44 UTC
d0f2372 Modernized for 1.5 09 May 1997, 03:21:44 UTC
6a9ee0e New heros. 09 May 1997, 03:21:12 UTC
29f6533 Scroll to top of info window when done. 09 May 1997, 03:19:29 UTC
ff2ea72 Oops -- missed FloatingPointError. 09 May 1997, 03:05:16 UTC
b6a7f77 Oops -- missed FloatingPointError in renaming. 09 May 1997, 03:03:23 UTC
7f25391 The usual. 09 May 1997, 02:42:48 UTC
9327422 Added --with-fpectl. Change checks for -lm, -lc. 09 May 1997, 02:42:00 UTC
7a24c37 Move WANT_SIGFPE_HANDLER. 09 May 1997, 02:41:10 UTC
f4eb63e Add HAVE_PTHREAD_H; move WANT_SIGFPE_HANDLER. 09 May 1997, 02:40:44 UTC
33fde57 1.5a1 adaptations. 09 May 1997, 02:40:09 UTC
004c1e1 Latest from Jeffrey Ollie. Infinite failure stack, some bugs fixed (fastmap, star_jump, register bug). 09 May 1997, 02:35:58 UTC
1681429 Fix the date. 09 May 1997, 02:25:55 UTC
51a6c90 Added docs for dumbdbm (AMK), and misc small fixes. 09 May 1997, 02:23:45 UTC
7e691de Document return value of wait[pid]() more carefully. Document how to get exit status of a popen() command. 09 May 1997, 02:22:59 UTC
e4f347e Document "" and "<broadcast>". 09 May 1997, 02:21:51 UTC
57c30f6 Regenerated on a newer Linux version. 09 May 1997, 02:21:06 UTC
db4a629 Avoid warning from gcc on Linux about dropping const. 09 May 1997, 02:17:12 UTC
16dffdc Fix the NDELAY test; avoid outputting binary garbage. 09 May 1997, 02:06:05 UTC
f518d5e Print less in test_socket. 09 May 1997, 01:54:45 UTC
0add15f removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. 09 May 1997, 01:07:15 UTC
c77b921 Latest and greatest. 09 May 1997, 01:00:56 UTC
16cd332 Add root.tkraise() to the _test() program so the window doesn't hide behind the shell window on NT. 09 May 1997, 00:59:43 UTC
9a0f04d Get rid of obsolete support for access statement. 09 May 1997, 00:58:02 UTC
6a33de9 Get rid of obsolete ACCESS_MODE opcode. 09 May 1997, 00:39:04 UTC
1aceb05 Add warning that it's out of date. 08 May 1997, 23:44:57 UTC
22822d7 forgot to rename import_filetab 08 May 1997, 23:43:52 UTC
d0e8436 ??? maybe window size 08 May 1997, 23:39:55 UTC
8812552 Added assert statement. 08 May 1997, 23:39:31 UTC
d8f038e Added assert resword. 08 May 1997, 23:39:12 UTC
4408ed5 Tiny utility prints the latest set of reserved words. 08 May 1997, 23:21:48 UTC
78b21cf Checking in old changes -- no idea why (probably window size). 08 May 1997, 23:21:09 UTC
de554ec The usual. 08 May 1997, 23:14:57 UTC
6dd8783 Improve getting the mailbox from the environment. 08 May 1997, 23:11:52 UTC
56f78d9 Set correct RFC number. 08 May 1997, 23:11:04 UTC
25107de Set correct RFC number. Open input in binary. 08 May 1997, 23:10:42 UTC
ee2373b Oops, missed some renamings. 07 May 1997, 23:51:07 UTC
6778f25 Oops, rename2.h was included by some other headers. 07 May 1997, 23:50:40 UTC
b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' symbols is needed, define these in Python.h with a Py_ prefix. 07 May 1997, 17:46:13 UTC
8813b58 On popular demand, re-enable the readline event hook. 07 May 1997, 17:42:41 UTC
aa948df In makesockaddr(), if we don't know the address family, don't raise an exception -- return it as a tuple. Seems useful in promiscuous mode. 07 May 1997, 17:41:48 UTC
8b4c987 - toolboxmodules built first (others depend on it) - Changed name of fat interpreter to PythonFAT (Python conflicted with toplevel folder of the same name, unfortunately) 07 May 1997, 15:52:12 UTC
c512be0 Sometimes tried to modify a tuple. Fixed. 07 May 1997, 15:50:56 UTC
73d203f Version upped to 1.5a1 07 May 1997, 15:49:51 UTC
3edc476 Included new MSL error numbers 07 May 1997, 15:49:38 UTC
e44545f Workaround for bug in MSL and CWGUSI interaction that stopped the "don't close window on exit" feature to work. 07 May 1997, 15:48:54 UTC
back to top