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
6192df10
Kaydet (Commit)
6192df10
authored
May 10, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Deprecate the compiler package for removal in 3.0.
üst
af878048
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
+11
-2
compiler.rst
Doc/library/compiler.rst
+4
-0
__init__.py
Lib/compiler/__init__.py
+3
-0
test_compiler.py
Lib/test/test_compiler.py
+2
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/compiler.rst
Dosyayı görüntüle @
6192df10
...
...
@@ -5,6 +5,9 @@
Python compiler package
***********************
.. deprecated:: 2.6
The compiler package has been removed in Python 3.0.
.. sectionauthor:: Jeremy Hylton <jeremy@zope.com>
...
...
@@ -34,6 +37,7 @@ The basic interface
.. module:: compiler
:synopsis: Python code compiler written in Python.
:deprecated:
The top-level of the package defines four functions. If you import
...
...
Lib/compiler/__init__.py
Dosyayı görüntüle @
6192df10
...
...
@@ -20,6 +20,9 @@ compile(source, filename, mode, flags=None, dont_inherit=None)
compileFile(filename)
Generates a .pyc file by compiling filename.
"""
from
warnings
import
warnpy3k
warnpy3k
(
"the compiler package has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
from
compiler.transformer
import
parse
,
parseFile
from
compiler.visitor
import
walk
...
...
Lib/test/test_compiler.py
Dosyayı görüntüle @
6192df10
import
compiler
import
test.test_support
compiler
=
test
.
test_support
.
import_module
(
'compiler'
,
deprecated
=
True
)
from
compiler.ast
import
flatten
import
os
,
sys
,
time
,
unittest
import
test.test_support
from
random
import
random
from
StringIO
import
StringIO
...
...
Misc/NEWS
Dosyayı görüntüle @
6192df10
...
...
@@ -23,6 +23,8 @@ Extension Modules
Library
-------
- The compiler package has been deprecated for removal in Python 3.0.
- The Bastion and rexec modules have been deprecated for removal in Python 3.0.
- The bsddb185 module has been deprecated for removal in Python 3.0.
...
...
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