summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes4
1 files changed, 3 insertions, 1 deletions
diff --git a/changes b/changes
index 990f01c..69fc942 100644
--- a/changes
+++ b/changes
@@ -2,7 +2,7 @@ This file summarizes all changes made to Tk since version 1.0 was
released on March 13, 1991. Changes that aren't backward compatible
are marked specially.
-RCS: @(#) $Id: changes,v 1.95 2006/04/11 10:23:20 das Exp $
+RCS: @(#) $Id: changes,v 1.96 2006/04/11 12:05:48 das Exp $
3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from
the interpreter when the main window is deleted (otherwise there will
@@ -6168,6 +6168,8 @@ accept the color names "Black" and "White" (porter)
2006-04-11 (bug fix)[700316] Aqua: enable 'Preferences' app menu item (steffen)
+2006-04-11 (bug fix)[1193614] Aqua: tk_messageBox escape key binding (steffen)
+
2006-04-11 (enhancement)[1105284] Aqua: call ::tk::mac::* procs for all
registered applevents (steffen)
: 0.0%;'/> -rw-r--r--Modules/xxmodule.c2
-rw-r--r--Modules/zlibmodule.c2
47 files changed, 47 insertions, 46 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index b42a2bc..b68fd7d 100644
--- a/Modules/_cursesmodule.c
+++ b/Modules/_cursesmodule.c
@@ -1522,7 +1522,7 @@ static PyMethodDef PyCurses_methods[] = {
/* Initialization function for the module */
-void
+DL_EXPORT(void)
initcurses()
{
PyObject *m, *d, *v;
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 2f7a42b..3b84729 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -309,7 +309,7 @@ static struct PyMethodDef PyLocale_Methods[] = {
{NULL, NULL}
};
-void
+DL_EXPORT(void)
init_locale()
{
PyObject *m,*d,*x;
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 86a4e58..9d68c69 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -2006,7 +2006,7 @@ ins_string(d, name, val)
}
-void
+DL_EXPORT(void)
init_tkinter()
{
PyObject *m, *d;
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index fc31b31..656f5a6 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -1457,7 +1457,7 @@ statichere PyTypeObject Arraytype = {
arraytype_doc, /*tp_doc*/
};
-void
+DL_EXPORT(void)
initarray()
{
PyObject *m, *d;
diff --git a/Modules/audioop.c b/Modules/audioop.c
index e7edfec..76fba98 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -1402,7 +1402,7 @@ static PyMethodDef audioop_methods[] = {
{ 0, 0 }
};
-void
+DL_EXPORT(void)
initaudioop()
{
PyObject *m, *d;
diff --git a/Modules/binascii.c b/Modules/binascii.c
index 26e4b6c..73dc27a 100644
--- a/Modules/binascii.c
+++ b/Modules/binascii.c
@@ -742,7 +742,7 @@ static struct PyMethodDef binascii_module_methods[] = {
/* Initialization function for the module (*must* be called initbinascii) */
static char doc_binascii[] = "Conversion between binary data and ASCII";
-void
+DL_EXPORT(void)
initbinascii()
{
PyObject *m, *d, *x;
diff --git a/Modules/bsddbmodule.c b/Modules/bsddbmodule.c
index ca7fa5f..1bb40e6 100644
--- a/Modules/bsddbmodule.c
+++ b/Modules/bsddbmodule.c
@@ -865,7 +865,7 @@ static PyMethodDef bsddbmodule_methods[] = {
{0, 0},
};
-void
+DL_EXPORT(void)
initbsddb() {
PyObject *m, *d;
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c
index 6828a11..19a0450 100644
--- a/Modules/cStringIO.c
+++ b/Modules/cStringIO.c
@@ -589,7 +589,7 @@ static struct PycStringIO_CAPI CAPI = {
&Otype,
};
-void
+DL_EXPORT(void)
initcStringIO() {
PyObject *m, *d, *v;
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 4e08722..583a629 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -301,7 +301,7 @@ static PyMethodDef cmath_methods[] = {
{NULL, NULL} /* sentinel */
};
-void
+DL_EXPORT(void)
initcmath()
{
PyObject *m, *d, *v;
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c
index 1498bb0..7cc03be 100644
--- a/Modules/cryptmodule.c
+++ b/Modules/cryptmodule.c
@@ -27,7 +27,7 @@ static PyMethodDef crypt_methods[] = {
{NULL, NULL} /* sentinel */
};
-void
+DL_EXPORT(void)
initcrypt()
{
Py_InitModule("crypt", crypt_methods);
diff --git a/Modules/dbmmodule.c b/Modules/dbmmodule.c
index ea628f1..7a234a2 100644
--- a/Modules/dbmmodule.c
+++ b/Modules/dbmmodule.c
@@ -311,7 +311,7 @@ static PyMethodDef dbmmodule_methods[] = {
{ 0, 0 },
};
-void
+DL_EXPORT(void)
initdbm() {
PyObject *m, *d;
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c
index 8120075..f18a655 100644
--- a/Modules/errnomodule.c
+++ b/Modules/errnomodule.c
@@ -94,7 +94,7 @@ Symbols that are not relevant to the underlying system are not defined.\n\
To map error codes to error messages, use the function os.strerror(),\n\
e.g. os.strerror(2) could return 'No such file or directory'.";
-void
+DL_EXPORT(void)
initerrno()
{
PyObject *m, *d, *de;
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c