Issue1768984

classification
Title: sys.builtin_module_names is missing
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, ukeshav
Priority: normal Keywords: test failure causes

Created on 2007-08-07.05:32:09 by cgroves, last changed 2007-08-20.06:45:24 by cgroves.

Messages
msg1821 (view) Author: Charlie Groves (cgroves) Date: 2007-08-07.05:32:09
sys.builtin_module_names is a tuple of strings giving the names of all modules that are compiled into this Python interpreter, and it's missing in Jython.  It's
tested in test_sys, but those tests are commented out until this is remedied as explained in http://wiki.python.org/jython/JythonDeveloperGuide/VersionTransitionTestExclusions
msg1822 (view) Author: keshav upadhyaya (ukeshav) Date: 2007-08-10.10:42:50
currently builtin_module_names is an array of String .  I think while changing it to PyTuple the problem can be 
solved . 

Very soon i will attach patch also
msg1823 (view) Author: Charlie Groves (cgroves) Date: 2007-08-20.06:45:24
Fixed in r3438.
History
Date User Action Args
2007-08-07 05:32:09cgrovescreate