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
c27bcbf8
Kaydet (Commit)
c27bcbf8
authored
Şub 02, 2013
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Back out fix for issue #13886; it introduced a new bug in interactive readline use.
üst
672671da
63752571
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
12 deletions
+1
-12
test_builtin.py
Lib/test/test_builtin.py
+0
-7
NEWS
Misc/NEWS
+0
-4
readline.c
Modules/readline.c
+1
-1
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
c27bcbf8
...
...
@@ -20,13 +20,6 @@ try:
import
pty
,
signal
except
ImportError
:
pty
=
signal
=
None
# Importing this module has the side-effect of changing the behavior of input().
# Ensure that we always use the readline version (if available), so we don't get
# different results depending on what other tests have already imported.
try
:
import
readline
except
ImportError
:
pass
class
Squares
:
...
...
Misc/NEWS
Dosyayı görüntüle @
c27bcbf8
...
...
@@ -17,10 +17,6 @@ Core and Builtins
- Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.
- Issue #13886: Fix input() to not strip out input bytes that cannot be decoded
using the locale encoding. Also fix sporadic failures in test_builtin due to
dependence on whether the readline module has previously been imported.
- Issue #10156: In the interpreter'
s
initialization
phase
,
unicode
globals
are
now
initialized
dynamically
as
needed
.
...
...
Modules/readline.c
Dosyayı görüntüle @
c27bcbf8
...
...
@@ -1067,7 +1067,7 @@ call_readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
char
*
saved_locale
=
strdup
(
setlocale
(
LC_CTYPE
,
NULL
));
if
(
!
saved_locale
)
Py_FatalError
(
"not enough memory to save locale"
);
setlocale
(
LC_CTYPE
,
"
C
"
);
setlocale
(
LC_CTYPE
,
""
);
#endif
if
(
sys_stdin
!=
rl_instream
||
sys_stdout
!=
rl_outstream
)
{
...
...
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