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
614c578d
Kaydet (Commit)
614c578d
authored
Nis 03, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17619: Make input() check for Ctrl-C correctly on Windows.
üst
d8a46969
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 @
614c578d
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
- Issue #17619: Make input() check for Ctrl-C correctly on Windows.
- Issue #17610: Don'
t
rely
on
non
-
standard
behavior
of
the
C
qsort
()
function
.
-
Issue
#
17357
:
Add
missing
verbosity
output
when
using
-
v
/-
vv
.
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
614c578d
...
...
@@ -1733,6 +1733,7 @@ builtin_input(PyObject *self, PyObject *args)
}
s
=
PyOS_Readline
(
stdin
,
stdout
,
prompt
);
if
(
s
==
NULL
)
{
PyErr_CheckSignals
();
if
(
!
PyErr_Occurred
())
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
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