From 146483964e2e94b0d1709be438a1b86f75b5d730 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 8 Dec 2001 18:02:58 +0000 Subject: 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. --- RISCOS/Modules/riscosmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RISCOS/Modules/riscosmodule.c') diff --git a/RISCOS/Modules/riscosmodule.c b/RISCOS/Modules/riscosmodule.c index c4410173eb..cb4289db3e 100644 --- a/RISCOS/Modules/riscosmodule.c +++ b/RISCOS/Modules/riscosmodule.c @@ -148,7 +148,7 @@ static PyStructSequence_Field stat_result_fields[] = { }; static PyStructSequence_Desc stat_result_desc = { - "stat_result", + "riscos.stat_result", stat_result__doc__, stat_result_fields, 13 -- cgit v1.2.1