Issue2304

classification
Title: operator members lack a __module__ attribute correctly set
Type: behaviour Severity: normal
Components: Library Versions: Jython 2.7
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever, alex.gronholm, pcmanticore
Priority: Keywords: patch

Created on 2015-03-29.18:52:18 by pcmanticore, last changed 2015-04-04.01:21:21 by alex.gronholm.

Files
File name Uploaded Description Edit Remove
operator_missing_module.patch pcmanticore, 2015-03-29.18:52:18
Messages
msg9735 (view) Author: ClaudiuPopa (pcmanticore) Date: 2015-03-29.18:52:18
This is related to issue2303:

>>> import operator
>>> operator.xor.__module__
>>>

With the attached patch:

>>> import operator
>>> operator.xor.__module__
'operator'
>>>
msg9752 (view) Author: Alex Grönholm (alex.gronholm) Date: 2015-04-04.01:21:21
Fixed in 4722f297d15c
History
Date User Action Args
2015-04-04 01:21:21alex.gronholmsetstatus: open -> closed
resolution: fixed
messages: + msg9752
nosy: + alex.gronholm
2015-03-30 20:30:46Arfreversetnosy: + Arfrever
2015-03-29 18:52:18pcmanticorecreate