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
ff83c2ba
Kaydet (Commit)
ff83c2ba
authored
Şub 02, 2004
tarafından
Hye-Shik Chang
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix input() builtin function to respect compiler flags.
(SF patch 876178, patch by mwh, unittest by perky)
üst
96c44658
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
test_builtin.py
Lib/test/test_builtin.py
+13
-0
NEWS
Misc/NEWS
+3
-0
bltinmodule.c
Python/bltinmodule.c
+4
-1
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
ff83c2ba
...
...
@@ -931,6 +931,19 @@ class BuiltinTest(unittest.TestCase):
self
.
assertEqual
(
input
(),
'whitespace'
)
sys
.
stdin
=
cStringIO
.
StringIO
()
self
.
assertRaises
(
EOFError
,
input
)
# SF 876178: make sure input() respect future options.
sys
.
stdin
=
cStringIO
.
StringIO
(
'1/2'
)
sys
.
stdout
=
cStringIO
.
StringIO
()
exec
compile
(
'print input()'
,
'test_builtin_tmp'
,
'exec'
)
sys
.
stdin
.
seek
(
0
,
0
)
exec
compile
(
'from __future__ import division;print input()'
,
'test_builtin_tmp'
,
'exec'
)
sys
.
stdin
.
seek
(
0
,
0
)
exec
compile
(
'print input()'
,
'test_builtin_tmp'
,
'exec'
)
self
.
assertEqual
(
sys
.
stdout
.
getvalue
()
.
splitlines
(),
[
'0'
,
'0.5'
,
'0'
])
del
sys
.
stdout
self
.
assertRaises
(
RuntimeError
,
input
,
'prompt'
)
del
sys
.
stdin
...
...
Misc/NEWS
Dosyayı görüntüle @
ff83c2ba
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
- input() builtin function now respects compiler flags such as
__future__ statements. SF patch 876178.
- Removed PendingDeprecationWarning from apply(). apply() remains
deprecated, but the nuisance warning will not be issued.
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
ff83c2ba
...
...
@@ -979,6 +979,7 @@ builtin_input(PyObject *self, PyObject *args)
char
*
str
;
PyObject
*
res
;
PyObject
*
globals
,
*
locals
;
PyCompilerFlags
cf
;
line
=
builtin_raw_input
(
self
,
args
);
if
(
line
==
NULL
)
...
...
@@ -994,7 +995,9 @@ builtin_input(PyObject *self, PyObject *args)
PyEval_GetBuiltins
())
!=
0
)
return
NULL
;
}
res
=
PyRun_String
(
str
,
Py_eval_input
,
globals
,
locals
);
cf
.
cf_flags
=
0
;
PyEval_MergeCompilerFlags
(
&
cf
);
res
=
PyRun_StringFlags
(
str
,
Py_eval_input
,
globals
,
locals
,
&
cf
);
Py_DECREF
(
line
);
return
res
;
}
...
...
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