mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Guido pointed out that all names in the sys module have no underscore,
This commit is contained in:
parent
39dce29365
commit
a2b6ad6e27
2 changed files with 6 additions and 5 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue