usenetbinary-newsreadernzbgetsubtitlewebuiquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
254 B
15 lines
254 B
11 years ago
|
"""
|
||
|
Constant values about endian.
|
||
|
"""
|
||
|
|
||
|
BIG_ENDIAN = "ABCD"
|
||
|
LITTLE_ENDIAN = "DCBA"
|
||
10 years ago
|
MIDDLE_ENDIAN = "BADC"
|
||
11 years ago
|
NETWORK_ENDIAN = BIG_ENDIAN
|
||
|
|
||
|
endian_name = {
|
||
6 years ago
|
BIG_ENDIAN: "Big endian",
|
||
|
LITTLE_ENDIAN: "Little endian",
|
||
|
MIDDLE_ENDIAN: "Middle endian",
|
||
11 years ago
|
}
|