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
0b2d71bc
Kaydet (Commit)
0b2d71bc
authored
Mar 22, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #24266: Merge readline Ctrl+C handling from 3.5
üst
2efdc8c7
d6990d22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
NEWS
Misc/NEWS
+3
-0
readline.c
Modules/readline.c
+3
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
0b2d71bc
...
@@ -232,6 +232,9 @@ Core and Builtins
...
@@ -232,6 +232,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #24266: Ctrl+C during Readline history search now cancels the search
mode when compiled with Readline 7.
- Issue #26590: Implement a safe finalizer for the _socket.socket type. It now
- Issue #26590: Implement a safe finalizer for the _socket.socket type. It now
releases the GIL to close the socket.
releases the GIL to close the socket.
...
...
Modules/readline.c
Dosyayı görüntüle @
0b2d71bc
...
@@ -1138,6 +1138,9 @@ readline_until_enter_or_signal(const char *prompt, int *signal)
...
@@ -1138,6 +1138,9 @@ readline_until_enter_or_signal(const char *prompt, int *signal)
#endif
#endif
if
(
s
<
0
)
{
if
(
s
<
0
)
{
rl_free_line_state
();
rl_free_line_state
();
#if defined(RL_READLINE_VERSION) && RL_READLINE_VERSION >= 0x0700
rl_callback_sigcleanup
();
#endif
rl_cleanup_after_signal
();
rl_cleanup_after_signal
();
rl_callback_handler_remove
();
rl_callback_handler_remove
();
*
signal
=
1
;
*
signal
=
1
;
...
...
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