Guido van Rossum
41f0a98f8f
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.
1998-10-12 16:26:22 +00:00
Guido van Rossum
dc1adabcb8
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.
1998-10-09 20:51:18 +00:00
Guido van Rossum
215193bd93
There's no need to declare Tk_GetNumMainWindows() (and it breaks
...
something in the latest win342 build).
1998-10-08 02:27:41 +00:00
Guido van Rossum
7e48898d86
Use the t# format where appropriate. Greg Stein.
1998-10-08 02:25:24 +00:00
Guido van Rossum
2a570049ac
Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.
1998-10-07 22:51:56 +00:00
Guido van Rossum
d076c73cc8
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.
1998-10-07 19:42:25 +00:00
Guido van Rossum
c501583dfa
Make gcc -Wall happy.
1998-10-07 16:36:14 +00:00
Guido van Rossum
89bae99c5d
Make gcc -Wall happy:
...
Remove unused decls of getloclock() and is_lockobject().
1998-10-07 16:35:54 +00:00
Guido van Rossum
c20687355b
Make gcc -Wall happy:
...
(1) add dummy decl for strptime();
(2) move the code to set accept2dyear to the front of inittime().
1998-10-07 16:35:25 +00:00
Guido van Rossum
e7adf3eb6d
Documented PYTHONOPTIMIZE; by Marc Lemburg.
1998-10-07 14:50:06 +00:00
Guido van Rossum
d5f6c223a9
Make the version variable static (it has no business being exported).
1998-10-07 14:48:53 +00:00
Guido van Rossum
7fef86ea71
Clarify sharedinstall comment
1998-10-07 14:41:54 +00:00
Guido van Rossum
d5bcf9a343
Andrew Dalke's implementation of string.count().
1998-10-06 19:43:14 +00:00
Guido van Rossum
573788eef1
No need for (char *) cast from gdbm_strerror().
1998-10-03 05:15:07 +00:00
Guido van Rossum
b6e2a99aa6
Win32 port. Patches by Milton L. Hankins.
1998-10-03 05:13:27 +00:00
Guido van Rossum
49b560698b
Renamed thread.h to pythread.h.
1998-10-01 20:42:43 +00:00
Guido van Rossum
2645241add
Fixes for OS/2 by Jeff Rush.
1998-09-28 22:07:11 +00:00
Guido van Rossum
be70450f03
Removed some OS/2 #defines (now in the OS/2 specific config.h).
...
Patch by Jeff Rush.
1998-09-28 21:55:25 +00:00
Guido van Rossum
469067800b
Get rid of the test for non-NULL thread state in EventHook; it can be
...
triggered in situations that are not an error.
1998-09-21 14:47:16 +00:00
Guido van Rossum
1b236768e7
When we have siginterrupt(), use it to disable restarting interrupted
...
system calls.
1998-09-21 14:46:00 +00:00
Guido van Rossum
0db4c94d09
Enable the 'new' module by default.
1998-09-21 14:45:22 +00:00
Guido van Rossum
78694d970f
Patches from Greg Stein to support 'P' format in struct module's
...
native format, as void* (translated to Python int or long).
Also adds PyLong_FromVoidPtr and PyLong_AsVoidPtr to longobject.c.
1998-09-18 14:14:13 +00:00
Guido van Rossum
ce11393136
Remove some unused variables from gethostbyaddr_ex and gethostbyaddr,
...
discovered by Marc Lemburg.
1998-09-13 15:52:13 +00:00
Guido van Rossum
76d1f96fe2
Michael P. Reilly suggested this fix: makesetup wants to prepend
...
"$(srcdir)/" before all source files even when is starts with "/".
1998-09-09 14:04:51 +00:00
Guido van Rossum
164543607c
Now that we have standard (optional) long long support, the long long
...
support in this module can go. The patch only deletes code
(PyLong_FromLongLong() and PyLong_AsLongLong()). By Sjoerd Mullender.
1998-08-31 14:14:09 +00:00