]> granicus.if.org Git - python/commit
Surprising fix for SF bug 563060: module can be used as base class.
authorGuido van Rossum <guido@python.org>
Tue, 4 Jun 2002 05:52:47 +0000 (05:52 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 4 Jun 2002 05:52:47 +0000 (05:52 +0000)
commitc3a787e090dce76149ae86d70d4fecea3c285a40
tree12a2718b93c5f3a629b71049d99aa06b0de22145
parent88f72ff95592730d3931d90028d0df934fa1a13d
Surprising fix for SF bug 563060: module can be used as base class.

Change the module constructor (module_init) to have the signature
__init__(name:str, doc=None); this prevents the call from type_new()
to succeed.  While we're at it, prevent repeated calling of
module_init for the same module from leaking the dict, changing the
semantics so that __dict__ is only initialized if NULL.

Also adding a unittest, test_module.py.

This is an incompatibility with 2.2, if anybody was instantiating the
module class before, their argument list was probably empty; so this
can't be backported to 2.2.x.
Lib/test/test_module.py [new file with mode: 0644]
Objects/moduleobject.c