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
6909ab5e
Kaydet (Commit)
6909ab5e
authored
Mar 23, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 2.7.4 release branch
üst
cb800648
31289230
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
NEWS
Misc/NEWS
+11
-0
posixmodule.c
Modules/posixmodule.c
+2
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
6909ab5e
Python
News
+++++++++++
What
's New in Python 2.7.4?
===========================
*Release date: XXXX-XX-XX*
Library
-------
- Issue #17531: Return group and user ids as int instead long when possible.
What'
s
New
in
Python
2.7.4
release
candidate
1
==============================================
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
6909ab5e
...
...
@@ -357,7 +357,7 @@ _PyInt_FromUid(uid_t uid)
{
if
(
uid
<=
LONG_MAX
)
return
PyInt_FromLong
(
uid
);
return
Py
Long
_FromUnsignedLong
(
uid
);
return
Py
Int
_FromUnsignedLong
(
uid
);
}
PyObject
*
...
...
@@ -365,7 +365,7 @@ _PyInt_FromGid(gid_t gid)
{
if
(
gid
<=
LONG_MAX
)
return
PyInt_FromLong
(
gid
);
return
Py
Long
_FromUnsignedLong
(
gid
);
return
Py
Int
_FromUnsignedLong
(
gid
);
}
int
...
...
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