diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-17 15:00:36 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-17 15:00:36 (GMT) |
commit | 77007344d90f6f58ab0c3ccb014fa8023dc9a0ce (patch) | |
tree | 6c6c9ac299917f47f72606e4c9b8f9ab572018da /Doc/faq | |
parent | 97311833909e485ccd8321e3996d3480f9a81a06 (diff) | |
parent | 9fc0e9955d12a078ef146f25863a37b1b05c8dc1 (diff) | |
download | cpython-77007344d90f6f58ab0c3ccb014fa8023dc9a0ce.zip cpython-77007344d90f6f58ab0c3ccb014fa8023dc9a0ce.tar.gz cpython-77007344d90f6f58ab0c3ccb014fa8023dc9a0ce.tar.bz2 |
Issue #20266: Merge with 3.3
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/windows.rst | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index 246856e..59f9480 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -170,18 +170,20 @@ offender. How do I make an executable from a Python script? ------------------------------------------------- -See http://www.py2exe.org/ for a distutils extension that allows you +See http://cx-freeze.sourceforge.net/ for a distutils extension that allows you to create console and GUI executables from Python code. +`py2exe <http://www.py2exe.org/>`_, the most popular extension for building +Python 2.x-based executables, does not yet support Python 3 but a version that +does is in development. + Is a ``*.pyd`` file the same as a DLL? -------------------------------------- -.. XXX update for py3k (PyInit_foo) - Yes, .pyd files are dll's, but there are a few differences. If you have a DLL -named ``foo.pyd``, then it must have a function ``initfoo()``. You can then +named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You can then write Python "import foo", and Python will search for foo.pyd (as well as -foo.py, foo.pyc) and if it finds it, will attempt to call ``initfoo()`` to +foo.py, foo.pyc) and if it finds it, will attempt to call ``PyInit_foo()`` to initialize it. You do not link your .exe with foo.lib, as that would cause Windows to require the DLL to be present. |