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
bf5c6a97
Kaydet (Commit)
bf5c6a97
authored
Ock 17, 2009
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a few more references to long integers in the docs.
üst
8055afd0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
arg.rst
Doc/c-api/arg.rst
+4
-4
intro.rst
Doc/c-api/intro.rst
+1
-1
typeobj.rst
Doc/c-api/typeobj.rst
+2
-2
math.rst
Doc/library/math.rst
+1
-1
reprlib.rst
Doc/library/reprlib.rst
+1
-1
No files found.
Doc/c-api/arg.rst
Dosyayı görüntüle @
bf5c6a97
...
...
@@ -489,11 +489,11 @@ and the following format units are left untouched.
``H`` (integer) [unsigned short int]
Convert a C :ctype:`unsigned short int` to a Python integer object.
``I`` (integer
/long
) [unsigned int]
Convert a C :ctype:`unsigned int` to a Python
long
integer object.
``I`` (integer) [unsigned int]
Convert a C :ctype:`unsigned int` to a Python integer object.
``k`` (integer
/long
) [unsigned long]
Convert a C :ctype:`unsigned long` to a Python
long
integer object.
``k`` (integer) [unsigned long]
Convert a C :ctype:`unsigned long` to a Python integer object.
``L`` (long) [PY_LONG_LONG]
Convert a C :ctype:`long long` to a Python integer object. Only available
...
...
Doc/c-api/intro.rst
Dosyayı görüntüle @
bf5c6a97
...
...
@@ -607,7 +607,7 @@ extra checks are performed:
* Sanity checks of the input arguments are added to frame creation.
* The storage for
long
ints is initialized with a known invalid pattern to catch
* The storage for ints is initialized with a known invalid pattern to catch
reference to uninitialized digits.
* Low-level tracing and extra exception checking are added to the runtime
...
...
Doc/c-api/typeobj.rst
Dosyayı görüntüle @
bf5c6a97
...
...
@@ -135,7 +135,7 @@ type objects) *must* have the :attr:`ob_size` field.
:attr:`ob_size` field, and the instance size is :attr:`tp_basicsize` plus N
times :attr:`tp_itemsize`, where N is the "length" of the object. The value of
N is typically stored in the instance's :attr:`ob_size` field. There are
exceptions: for example,
long
ints use a negative :attr:`ob_size` to indicate a
exceptions: for example, ints use a negative :attr:`ob_size` to indicate a
negative number, and N is ``abs(ob_size)`` there. Also, the presence of an
:attr:`ob_size` field in the instance layout doesn't mean that the instance
structure is variable-length (for example, the structure for the list type has
...
...
@@ -812,7 +812,7 @@ type objects) *must* have the :attr:`ob_size` field.
where :attr:`tp_basicsize`, :attr:`tp_itemsize` and :attr:`tp_dictoffset` are
taken from the type object, and :attr:`ob_size` is taken from the instance. The
absolute value is taken because
long
ints use the sign of :attr:`ob_size` to
absolute value is taken because ints use the sign of :attr:`ob_size` to
store the sign of the number. (There's never a need to do this calculation
yourself; it is done for you by :cfunc:`_PyObject_GetDictPtr`.)
...
...
Doc/library/math.rst
Dosyayı görüntüle @
bf5c6a97
...
...
@@ -118,7 +118,7 @@ Number-theoretic and representation functions
.. function:: trunc(x)
Return the :class:`Real` value *x* truncated to an :class:`Integral` (usually
a
long
integer). Delegates to ``x.__trunc__()``.
a
n
integer). Delegates to ``x.__trunc__()``.
Note that :func:`frexp` and :func:`modf` have a different call/return pattern
...
...
Doc/library/reprlib.rst
Dosyayı görüntüle @
bf5c6a97
...
...
@@ -65,7 +65,7 @@ which format specific object types.
.. attribute:: Repr.maxlong
Maximum number of characters in the representation for a
long
integer. Digits
Maximum number of characters in the representation for a
n
integer. Digits
are dropped from the middle. The default is ``40``.
...
...
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