]> granicus.if.org Git - python/commitdiff
Issue #20266: Update parts of the Windows FAQ
authorZachary Ware <zachary.ware@gmail.com>
Fri, 17 Jan 2014 14:59:44 +0000 (08:59 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 17 Jan 2014 14:59:44 +0000 (08:59 -0600)
Doc/faq/windows.rst
Misc/NEWS

index 246856eee61b1ba44eb44ce108466711a6fbcc3a..59f9480c206dd176c8bb44b1d87a28a5e7b686c3 100644 (file)
@@ -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.
 
index a5e8482b473001e5e43ea422ebdbc1e7aaba6091..e33082602099aa81d0f922285903545e590575d6 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -302,7 +302,9 @@ Tests
 Documentation
 -------------
 
-- Issue #20255: Update the about and bugs pages.
+- Issue #20266: Updated some parts of the Windows FAQ.
+
+- Issue #20255: Updated the about and bugs pages.
 
 - Issue #20253: Fixed a typo in the ipaddress docs that advertised an
   illegal attribute name.  Found by INADA Naoki.