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

sort by:
Revision Author Date Message Commit Date
3179b36 When no master widget is specified, use options['parent'] if it exists. 12 October 1998, 20:40:47 UTC
7f20263 Only reference Tkinter._default_root when needed. 12 October 1998, 20:40:09 UTC
2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). 12 October 1998, 18:23:55 UTC
8442af3 Patches for mywrite() by Marc Lemburg: save/restore the error state reliably; check return value of vsprintf(). 12 October 1998, 18:22:10 UTC
41f0a98 Looks like I didn't test this interactively. The EventHook() code was broken; it asked for the current thread state when there was none. Fixed by using the saved event_tstate. 12 October 1998, 16:26:22 UTC
69ef7d6 Add parent argument to 'to to line number' dialog box. 12 October 1998, 16:07:27 UTC
0688436 Enhancements by Sjoerd Mullender: support for from a.b import c import a . b 12 October 1998, 15:23:04 UTC
7a840e8 Add support for dotted module names to readmodule(). 12 October 1998, 15:21:38 UTC
1c5fb1c Make mimetypes.guess_type understand data URLs. (Sjoerd Mullender) 12 October 1998, 15:12:28 UTC
8571ed8 Add a label at the top showing (very basic) help for the stack viewer. Add a label at the bottom showing the exception info. 10 October 1998, 19:15:32 UTC
3d0669d Add Unix main script and test program. 10 October 1998, 18:58:15 UTC
3b4ca0d Initial checking of Tk-based Python IDE. Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history. 10 October 1998, 18:48:31 UTC
dc1adab Patch by Jonathan Giddy (with some cleanup by me) to always use the thread state of the thread calling mainloop() (or another event handling function) rather than the thread state of the function that created the client data structure. 09 October 1998, 20:51:18 UTC
afd974c Document the new list.extend() method. Interesting enough, the canonical definition of extend() is very similar to append() except that the former doesn't list-ify the argument! 09 October 1998, 16:39:58 UTC
dedf6d6 listextend(): New method which implements L.extend(L2). 09 October 1998, 16:37:25 UTC
e33bba8 New version that is much more compact and easier to maintain. (Sjoerd) 09 October 1998, 13:27:49 UTC
3886026 Remove unreachable code. (Sjoerd) 09 October 1998, 13:27:19 UTC
1554b7b Use constants defined in cl module. (Sjoerd) 09 October 1998, 13:26:29 UTC
1e57a04 Removed unnecessary import of cl and CL. (Sjoerd) 09 October 1998, 13:26:01 UTC
1d5766f Shit -- forgot to set the installer's title to the new version. 09 October 1998, 02:30:23 UTC
60009cc Change _tkinter.c compile options. 09 October 1998, 02:03:49 UTC
002156d Add bufferobject.c. 09 October 1998, 02:03:00 UTC
9c2c1e8 Fix multi-arg list.append() calls. 08 October 1998, 15:24:48 UTC
215193b There's no need to declare Tk_GetNumMainWindows() (and it breaks something in the latest win342 build). 08 October 1998, 02:27:41 UTC
7e48898 Use the t# format where appropriate. Greg Stein. 08 October 1998, 02:25:24 UTC
b317f8a Implement new format character 't#'. This is like s#, accepting an object that implements the buffer interface, but requires a buffer that contains 8-bit character data. Greg Stein. 08 October 1998, 02:21:21 UTC
1db7070 Greg Stein: Implement the new bf_getcharbuffer function, indicating that (as far as the data type is concerned!) this is character data. 08 October 1998, 02:18:52 UTC
36eef3c Changes by Greg Stein (code) and GvR (design). Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For backward compatibility, this member should only be used (this includes testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set in the type structure, below. Note that if its flag is not set, we may be looking at an extension module compiled for 1.5.1, which will have garbage at the bf_getcharbuffer member (because the struct wasn't as long then). If the flag is one, the pointer may still be NULL. The function found at this member is used in a similar manner as bf_getreadbuffer, but it is known to point to 8-bit character data. (See discussion in getargs.c checked in later.) As a general feature for extending the type structure and the various structures that (may) hang off it in a backwards compatible way, we rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before, this slot was always zero. In 1.5.1, it may contain various flags indicating extra fields that weren't present in 1.5.1. The only flag defined so far is for the bf_getcharbuffer member of the PyBufferProcs struct. Note that the new spares (tp_xxx5 - tp_xxx8), once they become used, should also be protected by a flag (or flags) in tp_flags. 08 October 1998, 02:10:56 UTC
7e1e574 For 1.5.2a2. Install zlib.dll in DLLs instead of windows32 system directory. Install freeze, webchecker and versioncheck tools. Add Content type: text/plain registry keys for .py, .pyw. Add file type .pyo (same as .pyc). 08 October 1998, 01:50:47 UTC
f6240cf Some kind of source control krept in. 08 October 1998, 01:48:13 UTC
98f936b Whatever 08 October 1998, 01:46:52 UTC
5bd893b The previous checkin contained an experiment of Greg Stein's that wasn't meant for checkin, and which broke marshal.loads(). 08 October 1998, 01:45:47 UTC
0f8b30f On Win32, use LoadLibraryEx(pathname, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) to search dependent DLLs in the directory of the pathname. 08 October 1998, 01:44:41 UTC
2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. 07 October 1998, 22:51:56 UTC
2e23c31 Make the dependencies really work for the HTML version. 07 October 1998, 22:03:45 UTC
dd997f7 Add test for BSDI -- by Nigel Head and otto@mail.olympus.net. 07 October 1998, 19:58:26 UTC
a57c9b9 Added a whole bunch of descriptions. 07 October 1998, 19:52:35 UTC
19b23e5 Use the imp module to get the magic word. 07 October 1998, 19:45:33 UTC
d076c73 Changes to support other object types besides strings as the code string of code objects, as long as they support the (readonly) buffer interface. By Greg Stein. 07 October 1998, 19:42:25 UTC
437ff86 Change the default split level to not split on marked \paragraph and \subparagraph sections. Indicate the default in the --help message. 07 October 1998, 16:46:54 UTC
b0b1900 If --debug was used, don't delete the temporary .perl file used to pass options to latex2html. 07 October 1998, 16:41:40 UTC
9e46e56 BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. Also (non-BSDI specific): - Change the CHECK_STATUS() macro so it tests for nonzero error codes instead of negative error codes only (this was needed for BSDI, but appears to be correct according to the PTHREADS spec). - use memset() to zero out the allocated lock structure. Again, this was needed for BSDI, but can't hurt elsewhere either. 07 October 1998, 16:39:47 UTC
c501583 Make gcc -Wall happy. 07 October 1998, 16:36:14 UTC
89bae99 Make gcc -Wall happy: Remove unused decls of getloclock() and is_lockobject(). 07 October 1998, 16:35:54 UTC
c206873 Make gcc -Wall happy: (1) add dummy decl for strptime(); (2) move the code to set accept2dyear to the front of inittime(). 07 October 1998, 16:35:25 UTC
7148ca9 Make gcc -Wall happy. 07 October 1998, 16:22:12 UTC
562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. 07 October 1998, 14:50:42 UTC
e7adf3e Documented PYTHONOPTIMIZE; by Marc Lemburg. 07 October 1998, 14:50:06 UTC
d5f6c22 Make the version variable static (it has no business being exported). 07 October 1998, 14:48:53 UTC
2e782e8 Add buffer module entry points. 07 October 1998, 14:47:46 UTC
41f13f2 Added #! line 07 October 1998, 14:46:09 UTC
7fef86e Clarify sharedinstall comment 07 October 1998, 14:41:54 UTC
06c1808 Add Greg Stein's buffer object API. 07 October 1998, 14:41:13 UTC
2e19bd7 Add Greg Stein's buffer object API. 07 October 1998, 14:36:10 UTC
8c1e114 Don't attempt to add paragraph and subparagraph sections to the PDF outline. Work around font-long bogosity caused by ' in docstring. 07 October 1998, 14:12:20 UTC
56440a5 Fix two bugs in the fstat() line, reported by Fredruk Lundh. 07 October 1998, 14:06:03 UTC
2ccaf6f Remove a redundant check from list_slice() and list_ass_slice(). Noted by Greg Stein. 07 October 1998, 13:24:13 UTC
d832f9e Fix append() calls with more than 1 argument. 07 October 1998, 13:18:17 UTC
bac609a Updated about text 07 October 1998, 03:40:29 UTC
0926dea Moved the main pynche.py file to Main.py. Added minimal driver scripts pynche.py and pynche.pyw for Unix and Windows startup respectively. Document the .pyw file in the README. 07 October 1998, 03:36:58 UTC
c958043 Better layout of options menu and inc/dec buttons 07 October 1998, 03:19:33 UTC
8934af0 Fixes for some type-in strangeness 07 October 1998, 02:44:17 UTC
cd63dc9 Add a note about the console window 06 October 1998, 23:09:49 UTC
9cdd44f Never mind 06 October 1998, 23:08:02 UTC
1c792d5 Add link for Windows 06 October 1998, 23:06:24 UTC
84f52e0 RightARrow._create(): justify=RIGHT on the text object 06 October 1998, 23:04:55 UTC
e55055d A readme 06 October 1998, 23:03:22 UTC
da7502e Add a SELECTION to the pre-inserted text 06 October 1998, 21:40:22 UTC
3886e3a Copyright CNRI 06 October 1998, 20:49:20 UTC
6bfd655 Added the rgb.txt file from X11R6.4, including the license 06 October 1998, 20:44:14 UTC
4f63235 Initial revision 06 October 1998, 20:42:05 UTC
e7f4a47 Better initial color choosing 06 October 1998, 19:50:33 UTC
45c8d34 Better quitting 06 October 1998, 19:48:35 UTC
d5bcf9a Andrew Dalke's implementation of string.count(). 06 October 1998, 19:43:14 UTC
3836503 Converted to newstyle menubars 06 October 1998, 19:39:34 UTC
dfae3d5 Added a 'Help' special menu to show how this is done. 06 October 1998, 19:37:20 UTC
da65450 The message "Exception in Tkinter callback" should go to stderr. Fix bug in NoDefaultRoot() -- _default_root wasn't declared global; and made it reentrant. Don't set _default_root to whatever master gets passed in to BaseWidget._setup() (only set it when we need to create a new Tk() widget). 06 October 1998, 19:06:27 UTC
56af444 Update main window when Update on Click is turned on 06 October 1998, 18:56:31 UTC
ad3a67c Added version number in the About window 06 October 1998, 18:52:59 UTC
3a476e9 Track color changes: disable buttons and their labels when turned off 06 October 1998, 18:46:57 UTC
332aa4c Color Variation Ties => Move Sliders Moved buttons to the top 06 October 1998, 18:29:22 UTC
c4a9b3d main(): Better recovery when bogus color given on command line 06 October 1998, 18:13:20 UTC
b7b1cf0 rrggbb_to_triplet(): When color doesn't start with `#' raise a BadColor exception. 06 October 1998, 18:10:59 UTC
5b67839 Added a hex button so arrow numbers can display in decimal or hex. 06 October 1998, 16:13:35 UTC
c2d8f57 __togglehex(): Simplify 06 October 1998, 16:08:39 UTC
c1c7b1a Slight rearrangement of code in lookdict() by Vladimir Marangozov, to make a common case slightly faster. 06 October 1998, 16:01:14 UTC
73290df hexp() => hexp_var() 06 October 1998, 15:50:36 UTC
6831c30 hexp(): New function 06 October 1998, 15:49:19 UTC
a398924 __normalize(): Preserve the location of the icursor and restore it so that Left/Right arrow keys and C-a C-e all work. 06 October 1998, 15:47:45 UTC
ae4ad6e Changed the grey/magenta/cyan/yellow label text slightly. Changed Color Ties label to Color Variation Ties 06 October 1998, 15:41:31 UTC
14e2caf usage(): Print msg at end of docstring main(): Fixed logic error and reporting when no colordb was found. Given by GvR. 06 October 1998, 15:21:04 UTC
7c51a9a Title 05 October 1998, 21:31:37 UTC
c078b03 Finished implementation + docstring 05 October 1998, 21:29:04 UTC
964fbbb Added Alt-w bindings 05 October 1998, 21:15:08 UTC
9044b8e Added details window 05 October 1998, 21:14:46 UTC
cd09867 current_rgb(): New method 05 October 1998, 21:14:12 UTC
3d31439 *** empty log message *** 05 October 1998, 19:12:32 UTC
779af3a These were never under CVS, but now that I use cvs to communicate between the various macs it's better if they are. 05 October 1998, 11:53:26 UTC
0d5120f Newer versions of projects. 05 October 1998, 11:46:16 UTC
60a9ee2 Added SIZEOF_VOID_P and HAVE_LONG_LONG 05 October 1998, 11:43:32 UTC
back to top