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
ae00fb1d
Unverified
Kaydet (Commit)
ae00fb1d
authored
May 22, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
May 22, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30877: Fix clearing a cache in the the JSON decoder. (GH-7048)
üst
55bfe690
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
scanner.py
Lib/json/scanner.py
+1
-1
test_decode.py
Lib/test/test_json/test_decode.py
+3
-1
2018-05-22-13-05-12.bpo-30877.JZEGjI.rst
...S.d/next/Library/2018-05-22-13-05-12.bpo-30877.JZEGjI.rst
+3
-0
No files found.
Lib/json/scanner.py
Dosyayı görüntüle @
ae00fb1d
...
@@ -68,6 +68,6 @@ def py_make_scanner(context):
...
@@ -68,6 +68,6 @@ def py_make_scanner(context):
finally
:
finally
:
memo
.
clear
()
memo
.
clear
()
return
_
scan_once
return
scan_once
make_scanner
=
c_make_scanner
or
py_make_scanner
make_scanner
=
c_make_scanner
or
py_make_scanner
Lib/test/test_json/test_decode.py
Dosyayı görüntüle @
ae00fb1d
...
@@ -58,7 +58,9 @@ class TestDecode:
...
@@ -58,7 +58,9 @@ class TestDecode:
def
test_keys_reuse
(
self
):
def
test_keys_reuse
(
self
):
s
=
'[{"a_key": 1, "b_
\xe9
": 2}, {"a_key": 3, "b_
\xe9
": 4}]'
s
=
'[{"a_key": 1, "b_
\xe9
": 2}, {"a_key": 3, "b_
\xe9
": 4}]'
self
.
check_keys_reuse
(
s
,
self
.
loads
)
self
.
check_keys_reuse
(
s
,
self
.
loads
)
self
.
check_keys_reuse
(
s
,
self
.
json
.
decoder
.
JSONDecoder
()
.
decode
)
decoder
=
self
.
json
.
decoder
.
JSONDecoder
()
self
.
check_keys_reuse
(
s
,
decoder
.
decode
)
self
.
assertFalse
(
decoder
.
memo
)
def
test_extra_data
(
self
):
def
test_extra_data
(
self
):
s
=
'[1, 2, 3]5'
s
=
'[1, 2, 3]5'
...
...
Misc/NEWS.d/next/Library/2018-05-22-13-05-12.bpo-30877.JZEGjI.rst
0 → 100644
Dosyayı görüntüle @
ae00fb1d
Fixed a bug in the Python implementation of the JSON decoder that prevented
the cache of parsed strings from clearing after finishing the decoding.
Based on patch by c-fos.
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