Removed trailing whitespaces in miscalenous files.
This commit is contained in:
parent
50ef0f41af
commit
45ec3288d0
|
@ -47,7 +47,7 @@ struct PyMethodDef {
|
||||||
typedef struct PyMethodDef PyMethodDef;
|
typedef struct PyMethodDef PyMethodDef;
|
||||||
|
|
||||||
#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
|
#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
|
||||||
PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
|
PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
|
||||||
PyObject *);
|
PyObject *);
|
||||||
|
|
||||||
/* Flag passed to newmethodobject */
|
/* Flag passed to newmethodobject */
|
||||||
|
@ -66,7 +66,7 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
|
||||||
|
|
||||||
/* METH_COEXIST allows a method to be entered even though a slot has
|
/* METH_COEXIST allows a method to be entered even though a slot has
|
||||||
already filled the entry. When defined, the flag allows a separate
|
already filled the entry. When defined, the flag allows a separate
|
||||||
method, "__contains__" for example, to coexist with a defined
|
method, "__contains__" for example, to coexist with a defined
|
||||||
slot like sq_contains. */
|
slot like sq_contains. */
|
||||||
|
|
||||||
#define METH_COEXIST 0x0040
|
#define METH_COEXIST 0x0040
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# This file can be invoked from the various frameworkinstall... targets in the
|
# This file can be invoked from the various frameworkinstall... targets in the
|
||||||
# main Makefile. The next couple of variables are overridden on the
|
# main Makefile. The next couple of variables are overridden on the
|
||||||
# commandline in that case.
|
# commandline in that case.
|
||||||
|
|
||||||
VERSION=@VERSION@
|
VERSION=@VERSION@
|
||||||
|
@ -53,7 +53,7 @@ compileall=$(srcdir)/../Lib/compileall.py
|
||||||
installapps: install_Python install_PythonLauncher install_IDLE
|
installapps: install_Python install_PythonLauncher install_IDLE
|
||||||
|
|
||||||
#
|
#
|
||||||
# Install unix tools in /usr/local/bin. These are just aliases for the
|
# Install unix tools in /usr/local/bin. These are just aliases for the
|
||||||
# actual installation inside the framework.
|
# actual installation inside the framework.
|
||||||
#
|
#
|
||||||
installunixtools:
|
installunixtools:
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# TYPE: executable, uses makexp_aix
|
# TYPE: executable, uses makexp_aix
|
||||||
# SYSTEM: AIX
|
# SYSTEM: AIX
|
||||||
#
|
#
|
||||||
# DESCRIPTION: Creates a shareable .o from a set of pre-compiled
|
# DESCRIPTION: Creates a shareable .o from a set of pre-compiled
|
||||||
# (unshared) .o files
|
# (unshared) .o files
|
||||||
#
|
#
|
||||||
# USAGE: ld_so_aix [CC] [arguments]
|
# USAGE: ld_so_aix [CC] [arguments]
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
# 4. Uncommenting the "echo" lines gives detailed output
|
# 4. Uncommenting the "echo" lines gives detailed output
|
||||||
# about the commands executed in the script.
|
# about the commands executed in the script.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# HISTORY: Oct-1996 -- Support added for multiple .o files --
|
# HISTORY: Oct-1996 -- Support added for multiple .o files --
|
||||||
# -- and optional arguments processing. --
|
# -- and optional arguments processing. --
|
||||||
# Chris Myers (myers@tc.cornell.edu), Keith Kwok
|
# Chris Myers (myers@tc.cornell.edu), Keith Kwok
|
||||||
|
@ -132,7 +132,7 @@ do
|
||||||
done
|
done
|
||||||
|
|
||||||
if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then
|
if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then
|
||||||
ldsocoremode="true"
|
ldsocoremode="true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -z "$objs"; then
|
if test -z "$objs"; then
|
||||||
|
|
|
@ -9,9 +9,9 @@ module Python
|
||||||
-- not really an actual node but useful in Jython's typesystem.
|
-- not really an actual node but useful in Jython's typesystem.
|
||||||
| Suite(stmt* body)
|
| Suite(stmt* body)
|
||||||
|
|
||||||
stmt = FunctionDef(identifier name, arguments args,
|
stmt = FunctionDef(identifier name, arguments args,
|
||||||
stmt* body, expr* decorator_list, expr? returns)
|
stmt* body, expr* decorator_list, expr? returns)
|
||||||
| ClassDef(identifier name,
|
| ClassDef(identifier name,
|
||||||
expr* bases,
|
expr* bases,
|
||||||
keyword* keywords,
|
keyword* keywords,
|
||||||
expr? starargs,
|
expr? starargs,
|
||||||
|
@ -77,7 +77,7 @@ module Python
|
||||||
| Subscript(expr value, slice slice, expr_context ctx)
|
| Subscript(expr value, slice slice, expr_context ctx)
|
||||||
| Starred(expr value, expr_context ctx)
|
| Starred(expr value, expr_context ctx)
|
||||||
| Name(identifier id, expr_context ctx)
|
| Name(identifier id, expr_context ctx)
|
||||||
| List(expr* elts, expr_context ctx)
|
| List(expr* elts, expr_context ctx)
|
||||||
| Tuple(expr* elts, expr_context ctx)
|
| Tuple(expr* elts, expr_context ctx)
|
||||||
|
|
||||||
-- col_offset is the byte offset in the utf8 string the parser uses
|
-- col_offset is the byte offset in the utf8 string the parser uses
|
||||||
|
@ -85,13 +85,13 @@ module Python
|
||||||
|
|
||||||
expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
||||||
|
|
||||||
slice = Slice(expr? lower, expr? upper, expr? step)
|
slice = Slice(expr? lower, expr? upper, expr? step)
|
||||||
| ExtSlice(slice* dims)
|
| ExtSlice(slice* dims)
|
||||||
| Index(expr value)
|
| Index(expr value)
|
||||||
|
|
||||||
boolop = And | Or
|
boolop = And | Or
|
||||||
|
|
||||||
operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
|
operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
|
||||||
| RShift | BitOr | BitXor | BitAnd | FloorDiv
|
| RShift | BitOr | BitXor | BitAnd | FloorDiv
|
||||||
|
|
||||||
unaryop = Invert | Not | UAdd | USub
|
unaryop = Invert | Not | UAdd | USub
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
; This is all setup for all the win32 extension modules
|
; This is all setup for all the win32 extension modules
|
||||||
; released by Mark Hammond.
|
; released by Mark Hammond.
|
||||||
; You must ensure that the environment variable PYTHONEX is set
|
; You must ensure that the environment variable PYTHONEX is set
|
||||||
; to point to the root win32 extensions directory
|
; to point to the root win32 extensions directory
|
||||||
|
|
||||||
; PYTHONPREFIX must point to the Python build root directory
|
; PYTHONPREFIX must point to the Python build root directory
|
||||||
|
@ -49,7 +49,7 @@ dsp=%PYTHONPREFIX%\PCBuild\select.dsp
|
||||||
|
|
||||||
[zlib]
|
[zlib]
|
||||||
dsp=%PYTHONPREFIX%\PCBuild\zlib.dsp
|
dsp=%PYTHONPREFIX%\PCBuild\zlib.dsp
|
||||||
cl=/I %PYTHONPREFIX%\..\zlib-1.1.4 /D _WINDOWS /D WIN32
|
cl=/I %PYTHONPREFIX%\..\zlib-1.1.4 /D _WINDOWS /D WIN32
|
||||||
libs=%PYTHONPREFIX%\..\zlib-1.1.4\zlib.lib /nodefaultlib:libc
|
libs=%PYTHONPREFIX%\..\zlib-1.1.4\zlib.lib /nodefaultlib:libc
|
||||||
|
|
||||||
[winreg]
|
[winreg]
|
||||||
|
@ -95,7 +95,7 @@ dsp=%PYTHONEX%\win32\win32event.dsp
|
||||||
cl=/I %PYTHONEX%\win32\src
|
cl=/I %PYTHONEX%\win32\src
|
||||||
|
|
||||||
[win32file]
|
[win32file]
|
||||||
dsp=%PYTHONEX%\win32\win32file.dsp
|
dsp=%PYTHONEX%\win32\win32file.dsp
|
||||||
cl=/I %PYTHONEX%\win32\src
|
cl=/I %PYTHONEX%\win32\src
|
||||||
|
|
||||||
[win32net]
|
[win32net]
|
||||||
|
@ -108,7 +108,7 @@ dsp=%PYTHONEX%\win32\win32pdh.dsp
|
||||||
cl=/I %PYTHONEX%\win32\src
|
cl=/I %PYTHONEX%\win32\src
|
||||||
|
|
||||||
[win32pipe]
|
[win32pipe]
|
||||||
dsp=%PYTHONEX%\win32\win32pipe.dsp
|
dsp=%PYTHONEX%\win32\win32pipe.dsp
|
||||||
cl=/I %PYTHONEX%\win32\src
|
cl=/I %PYTHONEX%\win32\src
|
||||||
|
|
||||||
[win32security]
|
[win32security]
|
||||||
|
|
|
@ -34,13 +34,13 @@ sometimes it's not worth it. I actually wrote a C program the other day
|
||||||
: | 1 sm.bak
|
: | 1 sm.bak
|
||||||
|
|
||||||
At first I thought I could just keep one local list around
|
At first I thought I could just keep one local list around
|
||||||
at once, but this seems inherently recursive. Which means
|
at once, but this seems inherently recursive. Which means
|
||||||
I need an real recursive data structure. Maybe you could
|
I need an real recursive data structure. Maybe you could
|
||||||
do it with one of the %assoc arrays Larry uses in the begat
|
do it with one of the %assoc arrays Larry uses in the begat
|
||||||
programs, but I broke down and got dirty. I think the hardest
|
programs, but I broke down and got dirty. I think the hardest
|
||||||
part was matching Felix's desired output exactly. It's not
|
part was matching Felix's desired output exactly. It's not
|
||||||
blazingly fast: I should probably inline the &childof routine,
|
blazingly fast: I should probably inline the &childof routine,
|
||||||
but it *was* faster to write than I could have written the
|
but it *was* faster to write than I could have written the
|
||||||
equivalent C program.
|
equivalent C program.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue