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
c7533051
Kaydet (Commit)
c7533051
authored
Nis 13, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#9233: Fix json to work properly even when _json is not available.
üst
4f95a52f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
decoder.py
Lib/json/decoder.py
+1
-1
scanner.py
Lib/json/scanner.py
+1
-0
NEWS
Misc/NEWS
+4
-2
No files found.
Lib/json/decoder.py
Dosyayı görüntüle @
c7533051
...
@@ -214,7 +214,7 @@ def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,
...
@@ -214,7 +214,7 @@ def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,
pairs
=
object_hook
(
pairs
)
pairs
=
object_hook
(
pairs
)
return
pairs
,
end
return
pairs
,
end
def
JSONArray
(
s_and_end
,
scan_once
,
context
,
_w
=
WHITESPACE
.
match
):
def
JSONArray
(
s_and_end
,
scan_once
,
_w
=
WHITESPACE
.
match
,
_ws
=
WHITESPACE_STR
):
s
,
end
=
s_and_end
s
,
end
=
s_and_end
values
=
[]
values
=
[]
nextchar
=
s
[
end
:
end
+
1
]
nextchar
=
s
[
end
:
end
+
1
]
...
...
Lib/json/scanner.py
Dosyayı görüntüle @
c7533051
...
@@ -22,6 +22,7 @@ def py_make_scanner(context):
...
@@ -22,6 +22,7 @@ def py_make_scanner(context):
parse_int
=
context
.
parse_int
parse_int
=
context
.
parse_int
parse_constant
=
context
.
parse_constant
parse_constant
=
context
.
parse_constant
object_hook
=
context
.
object_hook
object_hook
=
context
.
object_hook
object_pairs_hook
=
context
.
object_pairs_hook
def
_scan_once
(
string
,
idx
):
def
_scan_once
(
string
,
idx
):
try
:
try
:
...
...
Misc/NEWS
Dosyayı görüntüle @
c7533051
...
@@ -51,9 +51,11 @@ Core and Builtins
...
@@ -51,9 +51,11 @@ Core and Builtins
Library
Library
-------
-------
- Issue #11703 - urllib2.geturl() does not return correct url when the original
- Issue #9233: Fix json to work properly even when _json is not available.
- Issue #11703: urllib2.geturl() does not return correct url when the original
url contains #fragment.
url contains #fragment.
- Issue #10019: Fixed regression in json module where an indent of 0 stopped
- Issue #10019: Fixed regression in json module where an indent of 0 stopped
adding newlines and acted instead like 'None'.
adding newlines and acted instead like 'None'.
...
...
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