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
a7c449b8
Kaydet (Commit)
a7c449b8
authored
Agu 18, 2017
tarafından
Sanyam Khurana
Kaydeden (comit)
Nick Coghlan
Agu 18, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30721: Add missing '?' to new error message (GH-3131)
üst
f0202bb3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
test_print.py
Lib/test/test_print.py
+2
-2
abstract.c
Objects/abstract.c
+1
-1
No files found.
Lib/test/test_print.py
Dosyayı görüntüle @
a7c449b8
...
...
@@ -161,14 +161,14 @@ class TestPy2MigrationHint(unittest.TestCase):
with
self
.
assertRaises
(
TypeError
)
as
context
:
print
>>
sys
.
stderr
,
"message"
self
.
assertIn
(
'Did you mean "print(<message>, '
'file=<output_stream>)'
,
str
(
context
.
exception
))
'file=<output_stream>)
"?
'
,
str
(
context
.
exception
))
# Test correct hint is produced in the case where RHS implements
# __rrshift__ but returns NotImplemented
with
self
.
assertRaises
(
TypeError
)
as
context
:
print
>>
42
self
.
assertIn
(
'Did you mean "print(<message>, '
'file=<output_stream>)'
,
str
(
context
.
exception
))
'file=<output_stream>)
"?
'
,
str
(
context
.
exception
))
# Test stream redirection hint is specific to print
with
self
.
assertRaises
(
TypeError
)
as
context
:
...
...
Objects/abstract.c
Dosyayı görüntüle @
a7c449b8
...
...
@@ -827,7 +827,7 @@ binary_op(PyObject *v, PyObject *w, const int op_slot, const char *op_name)
PyErr_Format
(
PyExc_TypeError
,
"unsupported operand type(s) for %.100s: "
"'%.100s' and '%.100s'. Did you mean
\"
print(<message>, "
"file=<output_stream>)
\"
"
,
"file=<output_stream>)
\"
?
"
,
op_name
,
v
->
ob_type
->
tp_name
,
w
->
ob_type
->
tp_name
);
...
...
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