Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/almostimportstdlib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'almostimportstdlib/__init__.py')
-rw-r--r--almostimportstdlib/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/almostimportstdlib/__init__.py b/almostimportstdlib/__init__.py
new file mode 100644
index 0000000..0203dfd
--- /dev/null
+++ b/almostimportstdlib/__init__.py
@@ -0,0 +1,11 @@
+"""
+This small package makes py2exe pack the entire Python 2.6.2 stdlib.
+It does so by "almost" importing the entire stdlib.
+To use it, just import it, and that's it:
+py2exe will pack the entire stdlib with your executable.
+If you want to change the list of modules, dig in
+the code, it's very short.
+"""
+
+from almostimportstdlib import *
+from almostimportstdlibmaker import * \ No newline at end of file