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
9ffc0205
Kaydet (Commit)
9ffc0205
authored
Ock 20, 2009
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x.
üst
8dd05147
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
test_long.py
Lib/test/test_long.py
+10
-0
NEWS
Misc/NEWS
+3
-0
longobject.c
Objects/longobject.c
+0
-2
No files found.
Lib/test/test_long.py
Dosyayı görüntüle @
9ffc0205
...
...
@@ -284,6 +284,16 @@ class LongTest(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
int
,
'123
\0
'
)
self
.
assertRaises
(
ValueError
,
int
,
'53'
,
40
)
# trailing L should no longer be accepted...
self
.
assertRaises
(
ValueError
,
int
,
'123L'
)
self
.
assertRaises
(
ValueError
,
int
,
'123l'
)
self
.
assertRaises
(
ValueError
,
int
,
'0L'
)
self
.
assertRaises
(
ValueError
,
int
,
'-37L'
)
self
.
assertRaises
(
ValueError
,
int
,
'0x32L'
,
16
)
self
.
assertRaises
(
ValueError
,
int
,
'1L'
,
21
)
# ... but it's just a normal digit if base >= 22
self
.
assertEqual
(
int
(
'1L'
,
22
),
43
)
self
.
assertRaises
(
TypeError
,
int
,
1
,
12
)
# SF patch #1638879: embedded NULs were not detected with
...
...
Misc/NEWS
Dosyayı görüntüle @
9ffc0205
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
- Issue #4842: Don't allow trailing 'L' when constructing an integer
from a string.
- Issue #4991: os.fdopen now raises an OSError for invalid file descriptors.
- Issue #4838: When a module is deallocated, free the memory backing the
...
...
Objects/longobject.c
Dosyayı görüntüle @
9ffc0205
...
...
@@ -1990,8 +1990,6 @@ digit beyond the first.
goto
onError
;
if
(
sign
<
0
)
Py_SIZE
(
z
)
=
-
(
Py_SIZE
(
z
));
if
(
*
str
==
'L'
||
*
str
==
'l'
)
str
++
;
while
(
*
str
&&
isspace
(
Py_CHARMASK
(
*
str
)))
str
++
;
if
(
*
str
!=
'\0'
)
...
...
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