diff options
author | Guido van Rossum <guido@python.org> | 2001-12-08 18:02:58 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-08 18:02:58 +0000 |
commit | a0457793b668a31968d757df3a473573a0da0615 (patch) | |
tree | 3cca274f997f45f8c5b47a3a99c22b8051ae0c8b /Mac/Modules/qt | |
parent | 9eb2cbbd41f735b2d0d2847f30814238796e4d0e (diff) | |
download | cpython-a0457793b668a31968d757df3a473573a0da0615.tar.gz |
Patch supplied by Burton Radons for his own SF bug #487390: Modifying
type.__module__ behavior.
This adds the module name and a dot in front of the type name in every
type object initializer, except for built-in types (and those that
already had this). Note that it touches lots of Mac modules -- I have
no way to test these but the changes look right. Apologies if they're
not. This also touches the weakref docs, which contains a sample type
object initializer. It also touches the mmap test output, because the
mmap type's repr is included in that output. It touches object.h to
put the correct description in a comment.
Diffstat (limited to 'Mac/Modules/qt')
-rw-r--r-- | Mac/Modules/qt/_Qtmodule.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Mac/Modules/qt/_Qtmodule.c b/Mac/Modules/qt/_Qtmodule.c index bd387ceb6f..962ee2ae11 100644 --- a/Mac/Modules/qt/_Qtmodule.c +++ b/Mac/Modules/qt/_Qtmodule.c @@ -932,7 +932,7 @@ static PyObject *MovieCtlObj_getattr(MovieControllerObject *self, char *name) PyTypeObject MovieController_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "MovieController", /*tp_name*/ + "_Qt.MovieController", /*tp_name*/ sizeof(MovieControllerObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -1326,7 +1326,7 @@ static PyObject *TimeBaseObj_getattr(TimeBaseObject *self, char *name) PyTypeObject TimeBase_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "TimeBase", /*tp_name*/ + "_Qt.TimeBase", /*tp_name*/ sizeof(TimeBaseObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -1603,7 +1603,7 @@ static PyObject *UserDataObj_getattr(UserDataObject *self, char *name) PyTypeObject UserData_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "UserData", /*tp_name*/ + "_Qt.UserData", /*tp_name*/ sizeof(UserDataObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -2637,7 +2637,7 @@ static PyObject *MediaObj_getattr(MediaObject *self, char *name) PyTypeObject Media_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "Media", /*tp_name*/ + "_Qt.Media", /*tp_name*/ sizeof(MediaObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -3724,7 +3724,7 @@ static PyObject *TrackObj_getattr(TrackObject *self, char *name) PyTypeObject Track_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "Track", /*tp_name*/ + "_Qt.Track", /*tp_name*/ sizeof(TrackObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -5796,7 +5796,7 @@ static PyObject *MovieObj_getattr(MovieObject *self, char *name) PyTypeObject Movie_Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "Movie", /*tp_name*/ + "_Qt.Movie", /*tp_name*/ sizeof(MovieObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ |