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
b034c754
Kaydet (Commit)
b034c754
authored
Tem 21, 2010
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport r82456
üst
823de002
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
dis.rst
Doc/library/dis.rst
+9
-3
NEWS
Misc/NEWS
+6
-0
No files found.
Doc/library/dis.rst
Dosyayı görüntüle @
b034c754
...
@@ -5,12 +5,18 @@
...
@@ -5,12 +5,18 @@
:synopsis: Disassembler for Python bytecode.
:synopsis: Disassembler for Python bytecode.
The :mod:`dis` module supports the analysis of Python :term:`bytecode` by
The :mod:`dis` module supports the analysis of CPython :term:`bytecode` by
disassembling it. Since there is no Python assembler, this module defines the
disassembling it. The CPython bytecode which this module takes as an
Python assembly language. The Python bytecode which this module takes as an
input is defined in the file :file:`Include/opcode.h` and used by the compiler
input is defined in the file :file:`Include/opcode.h` and used by the compiler
and the interpreter.
and the interpreter.
.. impl-detail::
Bytecode is an implementation detail of the CPython interpreter! No
guarantees are made that bytecode will not be added, removed, or changed
between versions of Python. Use of this module should not be considered to
work across Python VMs or Python releases.
Example: Given the function :func:`myfunc`::
Example: Given the function :func:`myfunc`::
def myfunc(alist):
def myfunc(alist):
...
...
Misc/NEWS
Dosyayı görüntüle @
b034c754
...
@@ -363,6 +363,12 @@ Tests
...
@@ -363,6 +363,12 @@ Tests
- Issue #8193: Fix test_zlib failure with zlib 1.2.4.
- Issue #8193: Fix test_zlib failure with zlib 1.2.4.
Documentation
-------------
- Issue #7829: Document in dis that bytecode is an implementation detail.
What's New in Python 3.1.2?
What's New in Python 3.1.2?
===========================
===========================
...
...
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