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
a7bd27f0
Kaydet (Commit)
a7bd27f0
authored
Mar 06, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2225: return nonzero status code from py_compile if not all files could be compiled.
üst
810ea29b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
3 deletions
+15
-3
py_compile.rst
Doc/library/py_compile.rst
+6
-1
py_compile.py
Lib/py_compile.py
+6
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/py_compile.rst
Dosyayı görüntüle @
a7bd27f0
...
...
@@ -42,7 +42,12 @@ byte-code cache files in the directory containing the source code.
structure to locate source files; it only compiles files named explicitly.
When this module is run as a script, the :func:`main` is used to compile all the
files named on the command line.
files named on the command line. The exit status is nonzero if one of the files
could not be compiled.
.. versionchanged:: 2.6
Added the nonzero exit status.
.. seealso::
...
...
Lib/py_compile.py
Dosyayı görüntüle @
a7bd27f0
...
...
@@ -154,11 +154,15 @@ def main(args=None):
"""
if
args
is
None
:
args
=
sys
.
argv
[
1
:]
rv
=
0
for
filename
in
args
:
try
:
compile
(
filename
,
doraise
=
True
)
except
PyCompileError
,
err
:
except
PyCompileError
,
err
:
# return value to indicate at least one failure
rv
=
1
sys
.
stderr
.
write
(
err
.
msg
)
return
rv
if
__name__
==
"__main__"
:
main
(
)
sys
.
exit
(
main
()
)
Misc/NEWS
Dosyayı görüntüle @
a7bd27f0
...
...
@@ -18,6 +18,9 @@ Core and builtins
Library
-------
- Issue #2225: py_compile, when executed as a script, now returns a non-
zero status code if not all files could be compiled successfully.
- Bug #1725737: In distutil's sdist, exclude RCS, CVS etc. also in the
root directory, and also exclude .hg, .git, .bzr, and _darcs.
...
...
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