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
6c107488
Commit
6c107488
authored
Apr 17, 2006
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This patches fixes a number of byteorder problems in MacOSX specific code.
parent
749d070e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
13 deletions
+10
-13
Lib/plat-mac/applesingle.py
Lib/plat-mac/applesingle.py
+1
-1
Lib/test/test_applesingle.py
Lib/test/test_applesingle.py
+2
-2
Mac/Modules/gestaltmodule.c
Mac/Modules/gestaltmodule.c
+1
-8
Python/mactoolboxglue.c
Python/mactoolboxglue.c
+6
-2
No files found.
Lib/plat-mac/applesingle.py
View file @
6c107488
...
...
@@ -25,7 +25,7 @@ class Error(ValueError):
pass
# File header format: magic, version, unused, number of entries
AS_HEADER_FORMAT
=
">
ll
16sh"
AS_HEADER_FORMAT
=
">
LL
16sh"
AS_HEADER_LENGTH
=
26
# The flag words for AppleSingle
AS_MAGIC
=
0x00051600
...
...
Lib/test/test_applesingle.py
View file @
6c107488
...
...
@@ -15,8 +15,8 @@ AS_VERSION=0x00020000
dataforkdata
=
'hello
\
r
\
0
world
\
n
'
resourceforkdata
=
'goodbye
\
n
cruel
\
0
world
\
r
'
applesingledata
=
struct
.
pack
(
"ll16sh"
,
AS_MAGIC
,
AS_VERSION
,
"foo"
,
2
)
+
\
struct
.
pack
(
"llllll"
,
1
,
50
,
len
(
dataforkdata
),
applesingledata
=
struct
.
pack
(
"
>
ll16sh"
,
AS_MAGIC
,
AS_VERSION
,
"foo"
,
2
)
+
\
struct
.
pack
(
"
>
llllll"
,
1
,
50
,
len
(
dataforkdata
),
2
,
50
+
len
(
dataforkdata
),
len
(
resourceforkdata
))
+
\
dataforkdata
+
\
resourceforkdata
...
...
Mac/Modules/gestaltmodule.c
View file @
6c107488
...
...
@@ -33,17 +33,10 @@ static PyObject *
gestalt_gestalt
(
PyObject
*
self
,
PyObject
*
args
)
{
OSErr
iErr
;
char
*
str
;
int
size
;
OSType
selector
;
long
response
;
if
(
!
PyArg_Parse
(
args
,
"
s#"
,
&
str
,
&
size
))
if
(
!
PyArg_Parse
(
args
,
"
O&"
,
PyMac_GetOSType
,
&
selector
))
return
NULL
;
if
(
size
!=
4
)
{
PyErr_SetString
(
PyExc_TypeError
,
"gestalt arg must be 4-char string"
);
return
NULL
;
}
selector
=
*
(
OSType
*
)
str
;
iErr
=
Gestalt
(
selector
,
&
response
);
if
(
iErr
!=
0
)
return
PyMac_Error
(
iErr
);
...
...
Python/mactoolboxglue.c
View file @
6c107488
...
...
@@ -25,6 +25,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#include "pymactoolbox.h"
#include <arpa/inet.h>
/* for ntohl, htonl */
/* Like strerror() but for Mac OS error numbers */
...
...
@@ -156,12 +157,14 @@ PyMac_GetFullPathname(FSSpec *fss, char *path, int len)
int
PyMac_GetOSType
(
PyObject
*
v
,
OSType
*
pr
)
{
uint32_t
tmp
;
if
(
!
PyString_Check
(
v
)
||
PyString_Size
(
v
)
!=
4
)
{
PyErr_SetString
(
PyExc_TypeError
,
"OSType arg must be string of 4 chars"
);
return
0
;
}
memcpy
((
char
*
)
pr
,
PyString_AsString
(
v
),
4
);
memcpy
((
char
*
)
&
tmp
,
PyString_AsString
(
v
),
4
);
*
pr
=
(
OSType
)
ntohl
(
tmp
);
return
1
;
}
...
...
@@ -169,7 +172,8 @@ PyMac_GetOSType(PyObject *v, OSType *pr)
PyObject
*
PyMac_BuildOSType
(
OSType
t
)
{
return
PyString_FromStringAndSize
((
char
*
)
&
t
,
4
);
uint32_t
tmp
=
htonl
((
uint32_t
)
t
);
return
PyString_FromStringAndSize
((
char
*
)
&
tmp
,
4
);
}
/* Convert an NumVersion value to a 4-element tuple */
...
...
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