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
9feab31d
Kaydet (Commit)
9feab31d
authored
Eyl 15, 2008
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pick up a few more definitions from the glossary on the wiki.
üst
f02c5f3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
glossary.rst
Doc/glossary.rst
+29
-0
No files found.
Doc/glossary.rst
Dosyayı görüntüle @
9feab31d
...
@@ -45,6 +45,11 @@ Glossary
...
@@ -45,6 +45,11 @@ Glossary
Any expression may be used within the argument list, and the evaluated
Any expression may be used within the argument list, and the evaluated
value is passed to the local variable.
value is passed to the local variable.
attribute
A value associated with an object which is referenced by name using
dotted expressions. For example, if an object *o* has an attribute
*a* it would be referenced as *o.a*.
BDFL
BDFL
Benevolent Dictator For Life, a.k.a. `Guido van Rossum
Benevolent Dictator For Life, a.k.a. `Guido van Rossum
...
@@ -57,6 +62,11 @@ Glossary
...
@@ -57,6 +62,11 @@ Glossary
second time (recompilation from source to bytecode can be avoided). This
second time (recompilation from source to bytecode can be avoided). This
"intermediate language" is said to run on a :term:`virtual machine`
"intermediate language" is said to run on a :term:`virtual machine`
that executes the machine code corresponding to each bytecode.
that executes the machine code corresponding to each bytecode.
class
A template for creating user-defined objects. Class definitions
normally contain method definitions which operate on instances of the
class.
classic class
classic class
Any class which does not inherit from :class:`object`. See
Any class which does not inherit from :class:`object`. See
...
@@ -341,6 +351,11 @@ Glossary
...
@@ -341,6 +351,11 @@ Glossary
pre-conditions before making calls or lookups. This style contrasts with
pre-conditions before making calls or lookups. This style contrasts with
the :term:`EAFP` approach and is characterized by the presence of many
the :term:`EAFP` approach and is characterized by the presence of many
:keyword:`if` statements.
:keyword:`if` statements.
list
A built-in Python :term:`sequence`. Despite its name it is more akin
to an array in other languages than to a linked list since access to
elements are O(1).
list comprehension
list comprehension
A compact way to process all or part of the elements in a sequence and
A compact way to process all or part of the elements in a sequence and
...
@@ -417,6 +432,11 @@ Glossary
...
@@ -417,6 +432,11 @@ Glossary
descriptors, properties, and :meth:`__getattribute__`.
descriptors, properties, and :meth:`__getattribute__`.
More information can be found in :ref:`newstyle`.
More information can be found in :ref:`newstyle`.
object
Any data with state (attributes or value) and defined behavior
(methods). Also the ultimate base class of any :term:`new-style
class`.
positional argument
positional argument
The arguments assigned to local names inside a function or method,
The arguments assigned to local names inside a function or method,
...
@@ -483,6 +503,15 @@ Glossary
...
@@ -483,6 +503,15 @@ Glossary
an :term:`expression` or a one of several constructs with a keyword, such
an :term:`expression` or a one of several constructs with a keyword, such
as :keyword:`if`, :keyword:`while` or :keyword:`print`.
as :keyword:`if`, :keyword:`while` or :keyword:`print`.
triple-quoted string
A string which is bound by three instances of either a quotation mark
(") or an apostrophe ('). While they don't provide any functionality
not available with single-quoted strings, they are useful for a number
of reasons. They allow you to include unescaped single and double
quotes within a string and they can span multiple lines without the
use of the continuation character, making them especially useful when
writing docstrings.
type
type
The type of a Python object determines what kind of object it is; every
The type of a Python object determines what kind of object it is; every
object has a type. An object's type is accessible as its
object has a type. An object's type is accessible as its
...
...
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