Message7781

Author amak
Recipients amak, fwierzbicki, lsgroup, strangeBear
Date 2013-02-26.00:40:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361839248.17.0.985691070921.issue1930@psf.upfronthosting.co.za>
In-reply-to
Content
If you look at the bottom of the registry file, you will see an option called "python.modules.builtin", which should allow you to specify the relevant os module for your platform.

"""
# Use this registry entry to control the list of builtin modules; you
# can add, remove, or override builtin modules.  The value for this
# registry key is a comma separated list of module entries, each entry 
# of which has the following allowable forms:
#
# name
#     The module name is `name' and the class name is
#     org.python.modules.name
#
# name:class
#     The module name is `name' and the class name is `class' where
#     class must be a fully qualified Java class name
#
# name:null
#     The module `name' is removed from the list of builtin modules
#
# A good example would be to use a jni version of os for more
# functionality by having an entry such as os:com.foo.jni.os
#python.modules.builtin = whatever

"""
History
Date User Action Args
2013-02-26 00:40:48amaksetmessageid: <1361839248.17.0.985691070921.issue1930@psf.upfronthosting.co.za>
2013-02-26 00:40:48amaksetrecipients: + amak, fwierzbicki, lsgroup, strangeBear
2013-02-26 00:40:48amaklinkissue1930 messages
2013-02-26 00:40:48amakcreate