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
5f6bf559
Kaydet (Commit)
5f6bf559
authored
Ock 24, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use new readline function types (closes #20374)
üst
bdf0cb52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
NEWS
Misc/NEWS
+2
-0
readline.c
Modules/readline.c
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
5f6bf559
...
@@ -56,6 +56,8 @@ Library
...
@@ -56,6 +56,8 @@ Library
loop this caused is now avoided by checking if the expected context is
loop this caused is now avoided by checking if the expected context is
already set before trying to fix it.
already set before trying to fix it.
- Issue #20374: Fix build with GNU readline >= 6.3.
- Issue #20311: select.epoll.poll() now rounds the timeout away from zero,
- Issue #20311: select.epoll.poll() now rounds the timeout away from zero,
instead of rounding towards zero. For example, a timeout of one microsecond
instead of rounding towards zero. For example, a timeout of one microsecond
is now rounded to one millisecond, instead of being rounded to zero.
is now rounded to one millisecond, instead of being rounded to zero.
...
...
Modules/readline.c
Dosyayı görüntüle @
5f6bf559
...
@@ -936,12 +936,12 @@ setup_readline(void)
...
@@ -936,12 +936,12 @@ setup_readline(void)
rl_bind_key_in_map
(
'\t'
,
rl_complete
,
emacs_meta_keymap
);
rl_bind_key_in_map
(
'\t'
,
rl_complete
,
emacs_meta_keymap
);
rl_bind_key_in_map
(
'\033'
,
rl_complete
,
emacs_meta_keymap
);
rl_bind_key_in_map
(
'\033'
,
rl_complete
,
emacs_meta_keymap
);
/* Set our hook functions */
/* Set our hook functions */
rl_startup_hook
=
(
Function
*
)
on_startup_hook
;
rl_startup_hook
=
(
rl_hook_func_t
*
)
on_startup_hook
;
#ifdef HAVE_RL_PRE_INPUT_HOOK
#ifdef HAVE_RL_PRE_INPUT_HOOK
rl_pre_input_hook
=
(
Function
*
)
on_pre_input_hook
;
rl_pre_input_hook
=
(
rl_hook_func_t
*
)
on_pre_input_hook
;
#endif
#endif
/* Set our completion function */
/* Set our completion function */
rl_attempted_completion_function
=
(
CPPFunction
*
)
flex_complete
;
rl_attempted_completion_function
=
(
rl_completion_func_t
*
)
flex_complete
;
/* Set Python word break characters */
/* Set Python word break characters */
completer_word_break_characters
=
completer_word_break_characters
=
rl_completer_word_break_characters
=
rl_completer_word_break_characters
=
...
...
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