| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch adds a new configure argument on OSX:
--with-universal-archs=[32-bit|64-bit|all]
When used with the --enable-universalsdk option this controls which
CPU architectures are includes in the framework. The default is 32-bit,
meaning i386 and ppc. The most useful alternative is 'all', which includes
all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64).
This includes limited support for the Carbon bindings in 64-bit mode as well,
limited because (a) I haven't done extensive testing and (b) a large portion
of the Carbon API's aren't available in 64-bit mode anyway.
I've also duplicated a feature of Apple's build of python: setting the
environment variable 'ARCHFLAGS' controls the '-arch' flags used for building
extensions using distutils.
|
|
|
|
| |
still used?)
|
|
|
|
|
|
|
|
|
| |
this file (the source) must be fixed.
Why isn't there a comment at the top saying the file is generated and
why are both the source and generated file checked in? Bootstrap problem?
Will backport.
|
| |
|
|
|
|
|
|
| |
Turns out patch #1035255 was incomplete, it only patched _Filemodule.c
and not filesupport.py. So regenerating caused as_pathname() to go into
an infinite loop.
|
|
|
|
| |
they are now _self, _args and _kwds.
|
| |
|
| |
|
|
|
|
| |
MacOS9isms.
|
|
|
|
| |
disabling unicode filenames on OS9.
|
| |
|
| |
|
|
|
|
| |
MacPython-OS9. Fixed.
|
|
|
|
| |
FSSpec or FSRef object and returns an 8-bit pathname (utf8 encoded).
|
|
|
|
| |
FSSpec.SetDates() and GetDates(). Closes #662836.
|
| |
|
|
|
|
| |
try it.
|
|
|
|
| |
MethodGenerator, this should be OSErrMethodGenerator.
|
|
|
|
|
| |
on OSX then the actual error (file not found) was obscured by the
error message that tried to be helpful about the allowed arguments. Fixed.
|
|
|
|
| |
could overwrite memory.
|
|
|
|
|
| |
- Added support for optional FSSpecs and FSRefs to the Alias routines.
NewAlias and friends are still functions, though, not methods.
|
|
|
|
| |
Added comment (to myself) on what still needs to be done.
|
|
|
|
|
|
|
| |
- Added access to the "data" attribute
- Fixed the FSRef tp_init routine to accept pathnames on OSX
- Changed the FSSpec tp_repr to return something resembling what
macfs returns.
|
|
|
|
|
|
|
| |
way to get various alias creation routines as methods of FSSpec or FSRef
objects (which is the logical thing, from a Python POV). Also started on
the code that will contain all the macfs functionality, so macfs can
becode a Python module, to be used mainly for backward compatibility.
|
| |
|
|
manager. This should allow us the get rid of most of the FSSpecs, only
navigation services remains to be done.
|