Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
27abce5b
Commit
27abce5b
authored
May 23, 2006
by
Bob Ippolito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert #1493701
parent
9deeeef0
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
276 additions
and
416 deletions
+276
-416
Lib/struct.py
Lib/struct.py
+0
-76
Misc/NEWS
Misc/NEWS
+0
-2
Modules/Setup.dist
Modules/Setup.dist
+1
-1
Modules/structmodule.c
Modules/structmodule.c
+274
-336
setup.py
setup.py
+1
-1
No files found.
Lib/struct.py
deleted
100644 → 0
View file @
9deeeef0
"""
Functions to convert between Python values and C structs.
Python strings are used to hold the data representing the C struct
and also as format strings to describe the layout of data in the C struct.
The optional first format char indicates byte order, size and alignment:
@: native order, size & alignment (default)
=: native order, std. size & alignment
<: little-endian, std. size & alignment
>: big-endian, std. size & alignment
!: same as >
The remaining chars indicate types of args and must match exactly;
these can be preceded by a decimal repeat count:
x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;
h:short; H:unsigned short; i:int; I:unsigned int;
l:long; L:unsigned long; f:float; d:double.
Special cases (preceding decimal count indicates length):
s:string (array of char); p: pascal string (with count byte).
Special case (only available in native format):
P:an integer type that is wide enough to hold a pointer.
Special case (not in native mode unless 'long long' in platform C):
q:long long; Q:unsigned long long
Whitespace between formats is ignored.
The variable struct.error is an exception raised on errors.
"""
__version__
=
'0.1'
from
_struct
import
Struct
,
error
_MAXCACHE
=
100
_cache
=
{}
def
_compile
(
fmt
):
# Internal: compile struct pattern
if
len
(
_cache
)
>=
_MAXCACHE
:
_cache
.
clear
()
s
=
Struct
(
fmt
)
_cache
[
fmt
]
=
s
return
s
def
calcsize
(
fmt
):
"""
Return size of C struct described by format string fmt.
See struct.__doc__ for more on format strings.
"""
try
:
o
=
_cache
[
fmt
]
except
KeyError
:
o
=
_compile
(
fmt
)
return
o
.
size
def
pack
(
fmt
,
*
args
):
"""
Return string containing values v1, v2, ... packed according to fmt.
See struct.__doc__ for more on format strings.
"""
try
:
o
=
_cache
[
fmt
]
except
KeyError
:
o
=
_compile
(
fmt
)
return
o
.
pack
(
*
args
)
def
unpack
(
fmt
,
s
):
"""
Unpack the string, containing packed C structure data, according
to fmt. Requires len(string)==calcsize(fmt).
See struct.__doc__ for more on format strings.
"""
try
:
o
=
_cache
[
fmt
]
except
KeyError
:
o
=
_compile
(
fmt
)
return
o
.
unpack
(
s
)
Misc/NEWS
View file @
27abce5b
...
...
@@ -45,8 +45,6 @@ Core and builtins
Extension Modules
-----------------
- Patch #1493701: performance enhancements for struct module.
- Patch #1490224: time.altzone is now set correctly on Cygwin.
- Patch #1435422: zlib'
s
compress
and
decompress
objects
now
have
a
...
...
Modules/Setup.dist
View file @
27abce5b
...
...
@@ -167,7 +167,7 @@ GLHACK=-Dclear=__GLclear
#array arraymodule.c # array objects
#cmath cmathmodule.c # -lm # complex math library functions
#math mathmodule.c # -lm # math library functions, e.g. sin()
#
_struct _struct
.c # binary structure packing/unpacking
#
struct structmodule
.c # binary structure packing/unpacking
#time timemodule.c # -lm # time operations and variables
#operator operator.c # operator.add() and similar goodies
#_weakref _weakref.c # basic weak reference support
...
...
Modules/
_struct
.c
→
Modules/
structmodule
.c
View file @
27abce5b
This diff is collapsed.
Click to expand it.
setup.py
View file @
27abce5b
...
...
@@ -1444,7 +1444,7 @@ def main():
'install_lib'
:
PyBuildInstallLib
},
# The struct module is defined here, because build_ext won't be
# called unless there's at least one extension module defined.
ext_modules
=
[
Extension
(
'
_struct'
,
[
'_struct
.c'
])],
ext_modules
=
[
Extension
(
'
struct'
,
[
'structmodule
.c'
])],
# Scripts to install
scripts
=
[
'Tools/scripts/pydoc'
,
'Tools/scripts/idle'
,
...
...
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