Steven M. Gava
68d7336cb0
keybinding configuration
2002-01-19 01:30:56 +00:00
Steven M. Gava
facfc09352
keybinding configuration
2002-01-19 00:29:54 +00:00
Thomas Heller
d45a543418
Another name.
2002-01-18 20:56:28 +00:00
Thomas Heller
5cba76df7b
SWIGing a source file <name>.i silently overwrites <name>.c if it is
...
present - at least the swigged file should be named <name>_wrap.c as
this is also SWIG's default. (Even better would be to generate the
wrapped sources in a different location, but I'll leave this for
later).
Newer versions of SWIG don't accept the -dnone flag any more.
Since virtually nobody uses SWIG with distutils, this should do no
harm.
Suggested be Martin Bless on c.l.p.
2002-01-18 20:30:53 +00:00
Jack Jansen
ba4fe77fba
Added as_pathname() method to FSRef objects.
2002-01-18 16:13:15 +00:00
Jack Jansen
109f0945e4
Added a note that you have to add Mac/Lib to sys.path after doing
...
a "make installmacsubtree".
2002-01-18 16:12:27 +00:00
Martin v. Löwis
43b936d08c
Patch #477750 : Use METH_ constants in Modules.
2002-01-17 23:15:58 +00:00
Martin v. Löwis
c0e1671c71
Patch #477752 : Drop old-style getargs from curses.
2002-01-17 23:08:27 +00:00
Fred Drake
ac6dd0a817
Updated GNU info dir segment from Milan Zamazal.
2002-01-17 21:27:00 +00:00
Fred Drake
826e98214b
Update email address.
2002-01-17 21:05:14 +00:00
Fred Drake
d6bdb075ca
Update the list of output formats.
2002-01-17 12:35:20 +00:00
Martin v. Löwis
9741dc96f3
Use BLDLIBRARY to build extension modules. Fixes #504252 .
...
2.2.1 candidate.
2002-01-17 12:30:12 +00:00
Fred Drake
ac96868d2d
Consistency nits.
2002-01-17 04:51:55 +00:00
Fred Drake
efff11b37c
Minor consistency nit.
2002-01-17 04:44:34 +00:00
Mark Hammond
f717f0500c
Allow abspath to still do something sensisble if the nt module can not be imported.
2002-01-17 00:44:26 +00:00
Michael W. Hudson
39230b3230
Apply a variant of patch
...
[ #420565 ] makes setup.py search sys.prefix
I think this also fixes some bug in the tracker about not searching
directories that don't exist, but I can't find the report :(
2002-01-16 15:26:48 +00:00
Michael W. Hudson
8f5146088a
Change some spaces to tabs. I don't *think* that was me, but it
...
might have been...
2002-01-16 15:18:09 +00:00
Michael W. Hudson
f24281251f
Fix for
...
[ #504284 ] Last build problems on AIX
I'm ignoring the suggestion that this should be an autoconf test in the
interests of having a fix today. Feel free to quibble.
2002-01-16 15:14:49 +00:00
Michael W. Hudson
8fbd4a3e78
That hasn't been my email address for a while!
2002-01-16 14:55:05 +00:00
Martin v. Löwis
02af964924
Patch #504225 : add plan9 ifdef to timemodule floatsleep.
2002-01-16 11:04:06 +00:00
Martin v. Löwis
1f803f782c
Updated patch #487906 : Revise inline docs.
2002-01-16 10:53:24 +00:00
Jack Jansen
fdc8d758ad
Include errors.rsrc in the Python.app resource file, so the error strings
...
are available in MacOS API exceptions.
2002-01-15 23:20:40 +00:00
Tim Peters
ad134f0463
Update master Windows buildno list for 2.1.2final.
2002-01-15 22:24:37 +00:00
Guido van Rossum
eaa0a22f43
Disable code intended for PEP 277.
2002-01-15 21:25:51 +00:00
Guido van Rossum
340cbe74b9
A tentative fix for SF bug #503837 (Roeland Rengelink):
...
type.__module__ problems (again?)
This simply initializes the __module__ local in a class statement from
the __name__ global. I'm not 100% sure that this is the correct fix,
although it usually does the right thing. The problem is that if the
class statement executes in a custom namespace, the __name__ global
may be taken from __builtins__, in which case it would have the value
__builtin__, or it may not exist at all (if the custom namespace also
has a custom __builtins__), in which case the class statement will
fail.
Nevertheless, unless someone finds a better solution, this is a 2.2.1
bugfix too.
2002-01-15 21:06:07 +00:00
Jack Jansen
7668957508
Workaround for what is probably a problem in Apple's gcc: <pthread.h> fails
...
on a function pointer formal argument called "destructor", which is typedeffed
as a different function pointer type in object.h.
2002-01-15 20:36:14 +00:00
Guido van Rossum
4f3a62d9bc
There's no need for typechecks on the second and third argument of
...
new.instancemethod() -- the instancemethod object is now a perfectly
general container.
This fixes SF bug ##503091 (Pedro Rodriquez): new.instancemethod fails
for new classes
This is a 2.2.1 candidate.
2002-01-15 19:21:05 +00:00
Fred Drake
5e99731ab9
Only test ntpath.abspath() on Windows. This allows the rest of the module to
...
be tested regardless of the host platform.
2002-01-15 03:46:43 +00:00
Thomas Heller
3d62f8ca35
Fix a simple typo. Has this to be fixed also in other branches?
2002-01-14 08:37:39 +00:00
Jack Jansen
32d1a3b1c9
Fixed to work under MachoPython, doing the expected unpacking for applesingle files. The IDE still doesn't work, though, because it uses :-style pathnames.
2002-01-13 23:18:00 +00:00
Jack Jansen
d48b10621e
In MachoPython expect Unix-style pathnames for both FSSpec and FSRef initializers. TBD: Do the reverse for MacPython, and also handle as_pathname().
2002-01-13 23:16:32 +00:00
Jack Jansen
51e77e1324
Regenerated from UH 3.4. Candidate for 2.2.1.
2002-01-13 22:59:49 +00:00
Martin v. Löwis
175af2574f
Export SIGINFO. Fixes #502077 .
2002-01-12 11:43:25 +00:00
Martin v. Löwis
9668b933e3
Patch #414775 : Add --skip-build option to bdist command.
2002-01-12 11:27:42 +00:00
Martin v. Löwis
cdc4451222
Include <unistd.h> in Python.h. Fixes #500924 .
2002-01-12 11:05:12 +00:00
Steven M. Gava
edb60a7ba9
key binding handling dialog
2002-01-12 09:48:02 +00:00
Jack Jansen
8aa498774d
Removed references to download of Waste.
2002-01-11 12:41:01 +00:00
Jack Jansen
4a667c724a
CodeWarrior includes Waste and Internet Config nowadays, obviating the need for separate downloads.
2002-01-11 12:39:03 +00:00
Jack Jansen
8f54f2a3f3
Internet Config is now part of official Apple interfaces, so use the new
...
headers and libraries.
2002-01-11 12:38:08 +00:00
Jack Jansen
b99e521319
- Updated to Waste 2.0.
...
- Use waste included with CW in stead of separate package.
2002-01-11 12:37:15 +00:00
Jack Jansen
00638bd4f9
Don't call PyMac_OutputSeen if we have a custom console. Fix by Alexandre Parenteau.
2002-01-11 10:24:23 +00:00
Martin v. Löwis
a55ffaeee9
Add a per-message fallback mechanism for translations.
2002-01-11 06:58:49 +00:00
Martin v. Löwis
1be6419871
Add fallback argument to translation(). Request fallbacks on install.
...
Fixes #500595 .
2002-01-11 06:33:28 +00:00
Tim Peters
57f61fb80b
Update master Windows build-number list for 2.1.2c1.
2002-01-10 19:53:49 +00:00
Fred Drake
3673612754
Added item about the webbrowser security fix.
2002-01-10 13:50:31 +00:00
Jack Jansen
f706b1c807
Updated for CW7 and Tcl/Tk 8.3.4.
2002-01-10 00:07:00 +00:00
Jack Jansen
6c6b079185
Added the modules I missed first time around. Still not good enough, though: bgerror does a "package require msgcat" and I don't see a way to put packages into resources. Off to the mactcl list for help...
2002-01-10 00:05:54 +00:00
Just van Rossum
4b367359b5
Fixed TrackMouseRegion() argument: ioWasInRgn is an in/out parameter.
2002-01-09 18:54:16 +00:00
Marc-André Lemburg
3e3eacb5fc
Fixed "u#" parser marker to pass through Unicode objects as-is without
...
going through the buffer interface API.
Added tests for this to the _testcapi module and updated docs.
2002-01-09 16:21:27 +00:00
Jack Jansen
e0b1e6af58
Updated for CW7 and Tcl/Tk 8.3.4. Also added a few other things
...
that were changed but not yet reflected in this document.
2002-01-08 23:03:45 +00:00