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
01d9a775
Kaydet (Commit)
01d9a775
authored
Mar 23, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
group ids and user ids can be longs now (#17531)
üst
4d7fc3c5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
test_grp.py
Lib/test/test_grp.py
+1
-1
test_pwd.py
Lib/test/test_pwd.py
+2
-2
NEWS
Misc/NEWS
+2
-1
No files found.
Lib/test/test_grp.py
Dosyayı görüntüle @
01d9a775
...
...
@@ -16,7 +16,7 @@ class GroupDatabaseTestCase(unittest.TestCase):
self
.
assertEqual
(
value
[
1
],
value
.
gr_passwd
)
self
.
assertIsInstance
(
value
.
gr_passwd
,
basestring
)
self
.
assertEqual
(
value
[
2
],
value
.
gr_gid
)
self
.
assertIsInstance
(
value
.
gr_gid
,
int
)
self
.
assertIsInstance
(
value
.
gr_gid
,
(
long
,
int
)
)
self
.
assertEqual
(
value
[
3
],
value
.
gr_mem
)
self
.
assertIsInstance
(
value
.
gr_mem
,
list
)
...
...
Lib/test/test_pwd.py
Dosyayı görüntüle @
01d9a775
...
...
@@ -18,9 +18,9 @@ class PwdTest(unittest.TestCase):
self
.
assertEqual
(
e
[
1
],
e
.
pw_passwd
)
self
.
assertIsInstance
(
e
.
pw_passwd
,
basestring
)
self
.
assertEqual
(
e
[
2
],
e
.
pw_uid
)
self
.
assertIsInstance
(
e
.
pw_uid
,
int
)
self
.
assertIsInstance
(
e
.
pw_uid
,
(
int
,
long
)
)
self
.
assertEqual
(
e
[
3
],
e
.
pw_gid
)
self
.
assertIsInstance
(
e
.
pw_gid
,
int
)
self
.
assertIsInstance
(
e
.
pw_gid
,
(
int
,
long
)
)
self
.
assertEqual
(
e
[
4
],
e
.
pw_gecos
)
self
.
assertIsInstance
(
e
.
pw_gecos
,
basestring
)
self
.
assertEqual
(
e
[
5
],
e
.
pw_dir
)
...
...
Misc/NEWS
Dosyayı görüntüle @
01d9a775
...
...
@@ -9,7 +9,8 @@ What's New in Python 2.7.4?
Library
-------
- Issue #17531: Return group and user ids as int instead long when possible.
- Issue #17531: Fix tests that thought group and user ids were always the int
type.
What'
s
New
in
Python
2.7.4
release
candidate
1
...
...
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