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
eea1f5c2
Kaydet (Commit)
eea1f5c2
authored
Nis 03, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge
üst
c616604a
614c578d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
NEWS
Misc/NEWS
+2
-0
bltinmodule.c
Python/bltinmodule.c
+1
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
eea1f5c2
...
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
...
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #17619: Make input() check for Ctrl-C correctly on Windows.
- Issue #17357: Add missing verbosity messages for -v/-vv that were lost during
- Issue #17357: Add missing verbosity messages for -v/-vv that were lost during
the importlib transition.
the importlib transition.
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
eea1f5c2
...
@@ -1733,6 +1733,7 @@ builtin_input(PyObject *self, PyObject *args)
...
@@ -1733,6 +1733,7 @@ builtin_input(PyObject *self, PyObject *args)
}
}
s
=
PyOS_Readline
(
stdin
,
stdout
,
prompt
);
s
=
PyOS_Readline
(
stdin
,
stdout
,
prompt
);
if
(
s
==
NULL
)
{
if
(
s
==
NULL
)
{
PyErr_CheckSignals
();
if
(
!
PyErr_Occurred
())
if
(
!
PyErr_Occurred
())
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
goto
_readline_errors
;
goto
_readline_errors
;
...
...
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