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
a2b6ad6e
Kaydet (Commit)
a2b6ad6e
authored
Agu 15, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Guido pointed out that all names in the sys module have no underscore,
üst
39dce293
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
libsys.tex
Doc/lib/libsys.tex
+1
-1
sysmodule.c
Python/sysmodule.c
+5
-4
No files found.
Doc/lib/libsys.tex
Dosyayı görüntüle @
a2b6ad6e
...
...
@@ -20,7 +20,7 @@ It is always available.
\code
{
argv
}
has zero length.
\end{datadesc}
\begin{datadesc}
{
byte
_
order
}
\begin{datadesc}
{
byteorder
}
An indicator of the native byte order. This will have the value
\code
{
'big'
}
on big-endian (most-signigicant byte first) platforms,
and
\code
{
'little'
}
on little-endian (least-significant byte first)
...
...
Python/sysmodule.c
Dosyayı görüntüle @
a2b6ad6e
...
...
@@ -461,14 +461,15 @@ _PySys_Init(void)
/* Assumes that longs are at least 2 bytes long.
Should be safe! */
unsigned
long
number
=
1
;
char
*
value
;
s
=
(
char
*
)
&
number
;
if
(
s
[
0
]
==
0
)
PyDict_SetItemString
(
sysdict
,
"byte_order"
,
PyString_FromString
(
"big"
));
value
=
"big"
;
else
PyDict_SetItemString
(
sysdict
,
"byte_order"
,
PyString_FromString
(
"little"
));
value
=
"little"
;
PyDict_SetItemString
(
sysdict
,
"byteorder"
,
PyString_FromString
(
value
));
}
#ifdef MS_COREDLL
PyDict_SetItemString
(
sysdict
,
"dllhandle"
,
...
...
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