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
d1ca4f9d
Kaydet (Commit)
d1ca4f9d
authored
Agu 19, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge fixes for #12256 and typos from 3.2
üst
87552785
355d48ad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
install.rst
Doc/distutils/install.rst
+1
-1
setupscript.rst
Doc/distutils/setupscript.rst
+1
-1
glossary.rst
Doc/glossary.rst
+4
-1
No files found.
Doc/distutils/install.rst
Dosyayı görüntüle @
d1ca4f9d
...
@@ -101,7 +101,7 @@ one command from a terminal::
...
@@ -101,7 +101,7 @@ one command from a terminal::
python setup.py install
python setup.py install
For Windows, this command should be run from a command prompt window
s
For Windows, this command should be run from a command prompt window
(:menuselection:`Start --> Accessories`)::
(:menuselection:`Start --> Accessories`)::
setup.py install
setup.py install
...
...
Doc/distutils/setupscript.rst
Dosyayı görüntüle @
d1ca4f9d
...
@@ -254,7 +254,7 @@ code: it's probably better to write C code like ::
...
@@ -254,7 +254,7 @@ code: it's probably better to write C code like ::
If
you
need
to
include
header
files
from
some
other
Python
extension
,
you
can
If
you
need
to
include
header
files
from
some
other
Python
extension
,
you
can
take
advantage
of
the
fact
that
header
files
are
installed
in
a
consistent
way
take
advantage
of
the
fact
that
header
files
are
installed
in
a
consistent
way
by
the
Distutils
:
command
:`
install_header
`
command
.
For
example
,
the
Numerical
by
the
Distutils
:
command
:`
install_header
s
`
command
.
For
example
,
the
Numerical
Python
header
files
are
installed
(
on
a
standard
Unix
installation
)
to
Python
header
files
are
installed
(
on
a
standard
Unix
installation
)
to
:
file
:`/
usr
/
local
/
include
/
python1
.5
/
Numerical
`.
(
The
exact
location
will
differ
:
file
:`/
usr
/
local
/
include
/
python1
.5
/
Numerical
`.
(
The
exact
location
will
differ
according
to
your
platform
and
Python
installation
.)
Since
the
Python
include
according
to
your
platform
and
Python
installation
.)
Since
the
Python
include
...
...
Doc/glossary.rst
Dosyayı görüntüle @
d1ca4f9d
...
@@ -30,7 +30,10 @@ Glossary
...
@@ -30,7 +30,10 @@ Glossary
Abstract base classes complement :term:`duck-typing` by
Abstract base classes complement :term:`duck-typing` by
providing a way to define interfaces when other techniques like
providing a way to define interfaces when other techniques like
:func:`hasattr` would be clumsy or subtly wrong (for example with
:func:`hasattr` would be clumsy or subtly wrong (for example with
:ref:`magic methods <special-lookup>`). Python comes with many built-in ABCs for
:ref:`magic methods <special-lookup>`). ABCs introduce virtual
subclasses, which are classes that don't inherit from a class but are
still recognized by :func:`isinstance` and :func:`issubclass`; see the
:mod:`abc` module documentation. Python comes with many built-in ABCs for
data structures (in the :mod:`collections.abc` module), numbers (in the
data structures (in the :mod:`collections.abc` module), numbers (in the
:mod:`numbers` module), streams (in the :mod:`io` module), import finders
:mod:`numbers` module), streams (in the :mod:`io` module), import finders
and loaders (in the :mod:`importlib.abc` module). You can create your own
and loaders (in the :mod:`importlib.abc` module). You can create your own
...
...
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