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
4b003074
Kaydet (Commit)
4b003074
authored
Mar 16, 2010
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #6716/2: Backslash-replace error output in compilall.
üst
09c86afb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
2 deletions
+31
-2
compileall.py
Lib/compileall.py
+4
-1
test_compileall.py
Lib/test/test_compileall.py
+25
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/compileall.py
Dosyayı görüntüle @
4b003074
...
...
@@ -104,7 +104,10 @@ def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
print
(
'*** Error compiling'
,
fullname
,
'...'
)
else
:
print
(
'*** '
,
end
=
''
)
print
(
err
.
msg
)
# escape non-printable characters in msg
msg
=
err
.
msg
.
encode
(
sys
.
stdout
.
encoding
,
errors
=
'backslashreplace'
)
msg
=
msg
.
decode
(
sys
.
stdout
.
encoding
)
print
(
msg
)
success
=
0
except
(
SyntaxError
,
UnicodeError
,
IOError
)
as
e
:
if
quiet
:
...
...
Lib/test/test_compileall.py
Dosyayı görüntüle @
4b003074
import
sys
import
compileall
import
imp
import
os
...
...
@@ -7,6 +8,7 @@ import struct
import
tempfile
from
test
import
support
import
unittest
import
io
class
CompileallTests
(
unittest
.
TestCase
):
...
...
@@ -72,8 +74,30 @@ class CompileallTests(unittest.TestCase):
os
.
unlink
(
self
.
bc_path
)
os
.
unlink
(
self
.
bc_path2
)
class
EncodingTest
(
unittest
.
TestCase
):
'Issue 6716: compileall should escape source code when printing errors to stdout.'
def
setUp
(
self
):
self
.
directory
=
tempfile
.
mkdtemp
()
self
.
source_path
=
os
.
path
.
join
(
self
.
directory
,
'_test.py'
)
with
open
(
self
.
source_path
,
'w'
,
encoding
=
'utf-8'
)
as
file
:
file
.
write
(
'# -*- coding: utf-8 -*-
\n
'
)
file
.
write
(
'print u"
\u20ac
"
\n
'
)
def
tearDown
(
self
):
shutil
.
rmtree
(
self
.
directory
)
def
test_error
(
self
):
try
:
orig_stdout
=
sys
.
stdout
sys
.
stdout
=
io
.
TextIOWrapper
(
io
.
BytesIO
(),
encoding
=
'ascii'
)
compileall
.
compile_dir
(
self
.
directory
)
finally
:
sys
.
stdout
=
orig_stdout
def
test_main
():
support
.
run_unittest
(
CompileallTests
)
support
.
run_unittest
(
CompileallTests
,
EncodingTest
)
if
__name__
==
"__main__"
:
...
...
Misc/NEWS
Dosyayı görüntüle @
4b003074
...
...
@@ -283,6 +283,8 @@ C-API
Library
-------
- Issue #6716/2: Backslash-replace error output in compilall.
- Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox
with Tcl/Tk-8.5.
...
...
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