Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
9fc0e995
Kaydet (Commit)
9fc0e995
authored
Ock 17, 2014
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20266: Update parts of the Windows FAQ
üst
7f470d0f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
windows.rst
Doc/faq/windows.rst
+7
-5
NEWS
Misc/NEWS
+3
-1
No files found.
Doc/faq/windows.rst
Dosyayı görüntüle @
9fc0e995
...
...
@@ -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 ``
init
foo()``. 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 ``
init
foo()`` 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.
...
...
Misc/NEWS
Dosyayı görüntüle @
9fc0e995
...
...
@@ -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
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment