Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In my early experimentation, I noticed that traceback.print_exc() would go to th
All Python code in the client is Stackless Python bytecode and split up into a few files: lib/corelib.ccp, lib/corestdlib.ccp, lib/evelib.ccp, script/compiled.code. You can read about the details of these files on the [EVEmu Wiki][2] if you want to play with them. Anyway, the compiled.code file holds the bulk of the game code, but if you inspect sys.modules, you won't see anything from there. That's because it's handled by the 'nasty' module in libccp.
To expose these modules to sys.modules (and thus make it easy to import them): ` import sys import nasty for key, value in nasty.nasty.mods.items(): sys.modules[key] = value `

[2]: http://wiki.evemu-project.co.cc/eveFileFormats
[2]: http://wiki.evemu.org/index.php/EVE_File_Formats

# Services

Expand Down