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
0ecbccad
Kaydet (Commit)
0ecbccad
authored
Eki 13, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
document how to disable fixers
üst
eba774b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
2to3.rst
Doc/library/2to3.rst
+10
-6
No files found.
Doc/library/2to3.rst
Dosyayı görüntüle @
0ecbccad
...
@@ -53,13 +53,17 @@ After transformation, :file:`example.py` looks like this::
...
@@ -53,13 +53,17 @@ After transformation, :file:`example.py` looks like this::
Comments and and exact indentation are preserved throughout the translation
Comments and and exact indentation are preserved throughout the translation
process.
process.
By default, 2to3 runs a set of predefined fixers. The :option:`-l` flag
By default, 2to3 runs a set of predefined fixers. The :option:`-l` flag
lists
lists all avaible fixers. An explicit set of fixers to run can be given by use
all avaible fixers. An explicit set of fixers to run can be given with
of the :option:`-f` flag. The following example runs only the ``imports`` and
:option:`-f`. Likewise the :option:`-x` explicitly disables a fixer. The
``has_key`` fixers::
following example runs only the ``imports`` and
``has_key`` fixers::
$ 2to3 -f imports -f has_key example.py
$ 2to3 -f imports -f has_key example.py
This command runs every fixer except the ``apply`` fixer::
$ 2to3 -x apply example.py
Some fixers are *explicit*, meaning they aren't run be default and must be
Some fixers are *explicit*, meaning they aren't run be default and must be
listed on the command line to be run. Here, in addition to the default fixers,
listed on the command line to be run. Here, in addition to the default fixers,
the ``idioms`` fixer is run::
the ``idioms`` fixer is run::
...
@@ -78,8 +82,8 @@ flag. Note that *only* doctests will be refactored. This also doesn't require
...
@@ -78,8 +82,8 @@ flag. Note that *only* doctests will be refactored. This also doesn't require
the module to be valid Python. For example, doctest like examples in a reST
the module to be valid Python. For example, doctest like examples in a reST
document could also be refactored with this option.
document could also be refactored with this option.
The :option:`-v` option enables
the output of more information on the
The :option:`-v` option enables
output of more information on the translation
translation
process.
process.
When the :option:`-p` is passed, 2to3 treats ``print`` as a function instead of
When the :option:`-p` is passed, 2to3 treats ``print`` as a function instead of
a statement. This is useful when ``from __future__ import print_function`` is
a statement. This is useful when ``from __future__ import print_function`` is
...
...
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