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
50038013
Kaydet (Commit)
50038013
authored
Eki 31, 2014
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#22613: minor other fixes in library docs (thanks Jacques Ducasse)
üst
fb52e38a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
ctypes.rst
Doc/library/ctypes.rst
+1
-6
pydoc.rst
Doc/library/pydoc.rst
+7
-0
tempfile.rst
Doc/library/tempfile.rst
+1
-1
No files found.
Doc/library/ctypes.rst
Dosyayı görüntüle @
50038013
...
@@ -1909,7 +1909,7 @@ Utility functions
...
@@ -1909,7 +1909,7 @@ Utility functions
.. function:: find_msvcrt()
.. function:: find_msvcrt()
:module: ctypes.util
:module: ctypes.util
Windows only: return the filename of the VC runt
yp
e library used by Python,
Windows only: return the filename of the VC runt
im
e library used by Python,
and by the extension modules. If the name of the library cannot be
and by the extension modules. If the name of the library cannot be
determined, ``None`` is returned.
determined, ``None`` is returned.
...
@@ -2446,11 +2446,6 @@ other data types containing pointer type fields.
...
@@ -2446,11 +2446,6 @@ other data types containing pointer type fields.
and so on). Later assignments to the :attr:`_fields_` class variable will
and so on). Later assignments to the :attr:`_fields_` class variable will
raise an AttributeError.
raise an AttributeError.
Structure and union subclass constructors accept both positional and named
arguments. Positional arguments are used to initialize the fields in the
same order as they appear in the :attr:`_fields_` definition, named
arguments are used to initialize the fields with the corresponding name.
It is possible to defined sub-subclasses of structure types, they inherit
It is possible to defined sub-subclasses of structure types, they inherit
the fields of the base class plus the :attr:`_fields_` defined in the
the fields of the base class plus the :attr:`_fields_` defined in the
sub-subclass, if any.
sub-subclass, if any.
...
...
Doc/library/pydoc.rst
Dosyayı görüntüle @
50038013
...
@@ -22,6 +22,13 @@ The :mod:`pydoc` module automatically generates documentation from Python
...
@@ -22,6 +22,13 @@ The :mod:`pydoc` module automatically generates documentation from Python
modules. The documentation can be presented as pages of text on the console,
modules. The documentation can be presented as pages of text on the console,
served to a Web browser, or saved to HTML files.
served to a Web browser, or saved to HTML files.
For modules, classes, functions and methods, the displayed documentation is
derived from the docstring (i.e. the :attr:`__doc__` attribute) of the object,
and recursively of its documentable members. If there is no docstring,
:mod:`pydoc` tries to obtain a description from the block of comment lines just
above the definition of the class, function or method in the source file, or at
the top of the module (see :func:`inspect.getcomments`).
The built-in function :func:`help` invokes the online help system in the
The built-in function :func:`help` invokes the online help system in the
interactive interpreter, which uses :mod:`pydoc` to generate its documentation
interactive interpreter, which uses :mod:`pydoc` to generate its documentation
as text on the console. The same text documentation can also be viewed from
as text on the console. The same text documentation can also be viewed from
...
...
Doc/library/tempfile.rst
Dosyayı görüntüle @
50038013
...
@@ -185,7 +185,7 @@ The module defines the following user-callable functions:
...
@@ -185,7 +185,7 @@ The module defines the following user-callable functions:
>>> os.path.exists(f.name)
>>> os.path.exists(f.name)
False
False
The module uses
two global variables
that tell it how to construct a
The module uses
a global variable
that tell it how to construct a
temporary name. They are initialized at the first call to any of the
temporary name. They are initialized at the first call to any of the
functions above. The caller may change them, but this is discouraged; use
functions above. The caller may change them, but this is discouraged; use
the appropriate function arguments, instead.
the appropriate function arguments, instead.
...
...
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