- Remove Python 2.0 from python2, this was a mistake.
- Move Python 2.0 to python. - Remove Python 1.6
This commit is contained in:
parent
4d66b3c748
commit
a822bae6e7
@ -1,11 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.25 2000/11/21 16:57:16 jasoni Exp $
|
||||
# $OpenBSD: Makefile,v 1.26 2000/12/13 05:26:48 jasoni Exp $
|
||||
|
||||
DISTNAME= Python-1.6
|
||||
PKGNAME= python-1.6
|
||||
VERSION= 2.0
|
||||
DISTNAME= python-${VERSION}
|
||||
CATEGORIES= lang
|
||||
NEED_VERSION= 1.310
|
||||
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
||||
ftp://ftp.cwi.nl/pub/python/src/
|
||||
MASTER_SITES= ftp://www.python.org/pub/python/src/
|
||||
|
||||
HOMEPAGE= http://www.python.org/
|
||||
|
||||
@ -34,7 +33,7 @@ CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
||||
CONFIGURE_ARGS+= --with-fpectl
|
||||
MAKE_FLAGS+= OPT="${CFLAGS}"
|
||||
|
||||
WRKDIST= ${WRKDIR}/Python-1.6
|
||||
WRKDIST= ${WRKDIR}/Python-${VERSION}
|
||||
|
||||
# If libc_r exists, thread support is compiled in by default unless this
|
||||
# is a SPARC system where threads are currently non functional.
|
||||
@ -44,8 +43,10 @@ BROKEN="Support for ${MACHINE_ARCH} threads is currently broken"
|
||||
.elif !exists(/usr/lib/libc_r.a)
|
||||
BROKEN="No thread support on this machine"
|
||||
.else
|
||||
CONFIGURE_ARGS+= --with-thread
|
||||
CONFIGURE_ARGS+= --with-threads
|
||||
.endif
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-threads
|
||||
.endif
|
||||
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
@ -67,13 +68,13 @@ post-configure:
|
||||
|
||||
post-install:
|
||||
@strip ${PREFIX}/bin/python
|
||||
@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python1.6; tar -xf -)
|
||||
@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python${VERSION}; tar -xf -)
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
||||
# The tools package is not flavor dependent.
|
||||
.if defined(SUBPACKAGE) && ${SUBPACKAGE} == "-tools"
|
||||
PKGNAME=python-tools-1.6
|
||||
PKGNAME=python-tools-${VERSION}
|
||||
.endif
|
||||
.if ${FLAVOR:L:Mno_tools}
|
||||
PKGNAME:=${PKGNAME:S/-no_tools//}
|
||||
|
@ -100,8 +100,6 @@ _sre _sre.c # Fredrik Lundh's new regular expressions
|
||||
GLHACK=-Dclear=__GLclear
|
||||
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
|
||||
|
||||
# The thread module is now automatically enabled, see Setup.thread.
|
||||
|
||||
# Pure module. Cannot be linked dynamically.
|
||||
# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
|
||||
#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
|
||||
@ -139,6 +137,7 @@ _codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
||||
|
||||
unicodedata unicodedata.c unicodedatabase.c
|
||||
# static Unicode character database
|
||||
ucnhash ucnhash.c # Unicode Character Name expansion hash table
|
||||
|
||||
_locale _localemodule.c # access to ISO C locale support
|
||||
|
||||
@ -151,20 +150,23 @@ fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
|
||||
pwd pwdmodule.c # pwd(3)
|
||||
grp grpmodule.c # grp(3)
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
mmap mmapmodule.c # Memory-mapped files (also works on Win32)
|
||||
select selectmodule.c # select(2); not on ancient System V
|
||||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
#_socket socketmodule.c # socket(2); use this one for BeOS sockets
|
||||
#_socket socketmodule.c # socket(2)
|
||||
|
||||
# Memory-mapped files (also works on Win32).
|
||||
mmap mmapmodule.c
|
||||
|
||||
# Socket module compiled with SSL support; you must edit the SSL variable:
|
||||
#SSL=/usr/local/ssl
|
||||
#socket socketmodule.c \
|
||||
#_socket socketmodule.c \
|
||||
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
|
||||
# -L$(SSL)/lib -lssl -lcrypto
|
||||
_socket socketmodule.c \
|
||||
-DUSE_SSL -I/usr/include/ssl -lssl -lcrypto
|
||||
|
||||
# The crypt module is now disabled by default because it breaks builds
|
||||
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
|
||||
#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
||||
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
||||
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
@ -314,9 +316,9 @@ rotor rotormodule.c # enigma-inspired encryption
|
||||
syslog syslogmodule.c # syslog daemon interface
|
||||
|
||||
|
||||
# Lance's curses module. This requires the System V version of
|
||||
# curses, sometimes known as ncurses (e.g. on Linux, link with
|
||||
# -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
|
||||
# Curses support, requring the System V version of curses, often
|
||||
# provided by the ncurses library. e.g. on Linux, link with -lncurses
|
||||
# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
|
||||
# -L/usr/5lib before -lcurses).
|
||||
|
||||
_curses _cursesmodule.c -lcurses -ltermcap
|
||||
@ -360,8 +362,13 @@ dbm dbmmodule.c # dbm(3) may require -lndbm or similar
|
||||
# Edit the variables DB and DBPORT to point to the db top directory
|
||||
# and the subdirectory of PORT where you built it.
|
||||
#
|
||||
# (See http://www.jenkon-dev.com/~rd/python/ for an interface to
|
||||
# BSD DB 2.1.0.)
|
||||
# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
|
||||
# BSD DB 3.x.)
|
||||
|
||||
# Note: If a db.h file is found by configure, bsddb will be enabled
|
||||
# automatically via Setup.config.in. It only needs to be enabled here
|
||||
# if it is not automatically enabled there; check the generated
|
||||
# Setup.config before enabling it here.
|
||||
|
||||
#DB=/depot/sundry/src/berkeley-db/db.1.85
|
||||
#DBPORT=$(DB)/PORT/irix.5.3
|
||||
@ -415,10 +422,16 @@ zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
||||
# http://www.jclark.com/xml/expat.html, the current production release is
|
||||
# always ftp://ftp.jclark.com/pub/xml/expat.zip.
|
||||
#
|
||||
# (Note: the expat build process doesn't yet build a libexpat.a; you can
|
||||
# do this manually while we try convince the author to add it.)
|
||||
# EXPAT_DIR, below, should point to the expat/ directory created by
|
||||
# unpacking the Expat source distribution.
|
||||
#
|
||||
#EXPAT_DIR=/usr/local/src/expat/
|
||||
# Note: the expat build process doesn't yet build a libexpat.a; you can
|
||||
# do this manually while we try convince the author to add it. To do so,
|
||||
# cd to EXPAT_DIR, run "make" if you have not done so, then run:
|
||||
#
|
||||
# ar cr libexpat.a xmltok/*.o xmlparse/*.o
|
||||
#
|
||||
#EXPAT_DIR=/usr/local/src/expat
|
||||
#pyexpat pyexpat.c -I$(EXPAT_DIR)/xmlparse -L$(EXPAT_DIR) -lexpat
|
||||
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (Python-1.6.tar.gz) = 9d72ef93d7698769d9d3be7c17d5ad92
|
||||
RMD160 (Python-1.6.tar.gz) = e2a8bfabbb09012feb7f905d56295f42d00b30a5
|
||||
SHA1 (Python-1.6.tar.gz) = f287d654cf1a1d8717b6efce3e35a7644167ba21
|
||||
MD5 (python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
||||
RMD160 (python-2.0.tar.gz) = f3087ef879174cd5dfcf8e0117bb8b3770cc148c
|
||||
SHA1 (python-2.0.tar.gz) = 16ca42c5be1ddf5dc08d9b59b97f728f330e1fdc
|
||||
|
@ -1,10 +1,10 @@
|
||||
--- Lib/tempfile.py.orig Thu Sep 7 23:58:29 2000
|
||||
+++ Lib/tempfile.py Thu Sep 7 23:58:51 2000
|
||||
--- Lib/tempfile.py.orig Mon Nov 6 00:47:23 2000
|
||||
+++ Lib/tempfile.py Mon Nov 6 00:48:02 2000
|
||||
@@ -23,7 +23,7 @@ def gettempdir():
|
||||
pwd = os.getcwd()
|
||||
except (AttributeError, os.error):
|
||||
pwd = os.curdir
|
||||
- attempdirs = ['/usr/tmp', '/tmp', pwd]
|
||||
- attempdirs = ['/var/tmp', '/usr/tmp', '/tmp', pwd]
|
||||
+ attempdirs = ['/var/tmp', '/tmp', pwd]
|
||||
if os.name == 'nt':
|
||||
attempdirs.insert(0, 'C:\\TEMP')
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- Makefile.in.orig Thu Sep 7 23:56:35 2000
|
||||
+++ Makefile.in Thu Sep 7 23:57:30 2000
|
||||
@@ -101,8 +101,8 @@ FILEMODE= 644
|
||||
--- Makefile.in.orig Mon Oct 16 15:50:06 2000
|
||||
+++ Makefile.in Mon Nov 20 16:26:08 2000
|
||||
@@ -100,8 +100,8 @@ FILEMODE= 644
|
||||
|
||||
# Portable install script (configure doesn't always guess right)
|
||||
INSTALL= @srcdir@/install-sh -c
|
||||
@ -11,3 +11,12 @@
|
||||
|
||||
# Use this to make a link between python$(VERSION) and python in $(BINDIR)
|
||||
LN=@LN@
|
||||
@@ -260,7 +260,7 @@ maninstall:
|
||||
fi; \
|
||||
done
|
||||
$(INSTALL_DATA) $(srcdir)/Misc/python.man \
|
||||
- $(MANDIR)/man1/python.1
|
||||
+ $(MANDIR)/man1/python2.1
|
||||
|
||||
# Install the library
|
||||
PLATDIR= plat-$(MACHDEP)
|
||||
|
@ -1,12 +1,15 @@
|
||||
--- Python/dynload_shlib.c.orig Thu Sep 21 22:37:23 2000
|
||||
+++ Python/dynload_shlib.c Thu Sep 21 22:38:05 2000
|
||||
@@ -49,7 +49,8 @@ dl_funcptr _PyImport_GetDynLoadFunc(cons
|
||||
--- Python/dynload_shlib.c.orig Mon Nov 6 00:50:29 2000
|
||||
+++ Python/dynload_shlib.c Mon Nov 6 00:51:25 2000
|
||||
@@ -55,8 +55,10 @@ dl_funcptr _PyImport_GetDynLoadFunc(cons
|
||||
}
|
||||
|
||||
/* ### should there be a leading underscore for some platforms? */
|
||||
- sprintf(funcname, "init%.200s", shortname);
|
||||
-
|
||||
+ /* sprintf(funcname, "init%.200s", shortname); */
|
||||
+ /* Like on OpenBSD */
|
||||
+ sprintf(funcname, "_init%.200s", shortname);
|
||||
|
||||
+
|
||||
if (fp != NULL) {
|
||||
int i;
|
||||
struct stat statb;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# $OpenBSD: INSTALL,v 1.1.1.1 2000/12/04 03:36:49 jasoni Exp $
|
||||
# $OpenBSD: INSTALL,v 1.1 2000/12/13 05:26:48 jasoni Exp $
|
||||
#
|
||||
# python2 installation
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PFRAG.mm,v 1.5 2000/11/20 22:15:30 jasoni Exp $
|
||||
lib/python1.6/lib-dynload/audioop.so
|
||||
lib/python1.6/lib-dynload/imageop.so
|
||||
lib/python1.6/lib-dynload/rgbimgmodule.so
|
||||
@comment $OpenBSD: PFRAG.mm,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
||||
lib/python2.0/lib-dynload/audioop.so
|
||||
lib/python2.0/lib-dynload/imageop.so
|
||||
lib/python2.0/lib-dynload/rgbimgmodule.so
|
||||
|
@ -1,40 +1,42 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.5 2000/11/20 22:15:30 jasoni Exp $
|
||||
%%tk%%
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
||||
%%mm%%
|
||||
lib/python1.6/lib-dynload/_codecsmodule.so
|
||||
lib/python1.6/lib-dynload/_cursesmodule.so
|
||||
lib/python1.6/lib-dynload/_localemodule.so
|
||||
lib/python1.6/lib-dynload/arraymodule.so
|
||||
lib/python1.6/lib-dynload/binascii.so
|
||||
lib/python1.6/lib-dynload/cPickle.so
|
||||
lib/python1.6/lib-dynload/cStringIO.so
|
||||
lib/python1.6/lib-dynload/cmathmodule.so
|
||||
lib/python1.6/lib-dynload/dbmmodule.so
|
||||
lib/python1.6/lib-dynload/errnomodule.so
|
||||
lib/python1.6/lib-dynload/fcntlmodule.so
|
||||
lib/python1.6/lib-dynload/fpectlmodule.so
|
||||
lib/python1.6/lib-dynload/fpetestmodule.so
|
||||
lib/python1.6/lib-dynload/grpmodule.so
|
||||
lib/python1.6/lib-dynload/mathmodule.so
|
||||
lib/python1.6/lib-dynload/md5module.so
|
||||
lib/python1.6/lib-dynload/mmapmodule.so
|
||||
lib/python1.6/lib-dynload/mpzmodule.so
|
||||
lib/python1.6/lib-dynload/newmodule.so
|
||||
lib/python1.6/lib-dynload/operator.so
|
||||
lib/python1.6/lib-dynload/parsermodule.so
|
||||
lib/python1.6/lib-dynload/pwdmodule.so
|
||||
lib/python1.6/lib-dynload/readline.so
|
||||
lib/python1.6/lib-dynload/resource.so
|
||||
lib/python1.6/lib-dynload/rotormodule.so
|
||||
lib/python1.6/lib-dynload/selectmodule.so
|
||||
lib/python1.6/lib-dynload/shamodule.so
|
||||
lib/python1.6/lib-dynload/socketmodule.so
|
||||
lib/python1.6/lib-dynload/stropmodule.so
|
||||
lib/python1.6/lib-dynload/structmodule.so
|
||||
lib/python1.6/lib-dynload/syslogmodule.so
|
||||
lib/python1.6/lib-dynload/termios.so
|
||||
lib/python1.6/lib-dynload/timemodule.so
|
||||
lib/python1.6/lib-dynload/timingmodule.so
|
||||
lib/python1.6/lib-dynload/unicodedata.so
|
||||
lib/python1.6/lib-dynload/zlibmodule.so
|
||||
@dirrm lib/python1.6/lib-dynload
|
||||
%%tk%%
|
||||
lib/python2.0/lib-dynload/_codecsmodule.so
|
||||
lib/python2.0/lib-dynload/_cursesmodule.so
|
||||
lib/python2.0/lib-dynload/_localemodule.so
|
||||
lib/python2.0/lib-dynload/_socketmodule.so
|
||||
lib/python2.0/lib-dynload/arraymodule.so
|
||||
lib/python2.0/lib-dynload/binascii.so
|
||||
lib/python2.0/lib-dynload/cPickle.so
|
||||
lib/python2.0/lib-dynload/cStringIO.so
|
||||
lib/python2.0/lib-dynload/cmathmodule.so
|
||||
lib/python2.0/lib-dynload/cryptmodule.so
|
||||
lib/python2.0/lib-dynload/dbmmodule.so
|
||||
lib/python2.0/lib-dynload/errnomodule.so
|
||||
lib/python2.0/lib-dynload/fcntlmodule.so
|
||||
lib/python2.0/lib-dynload/fpectlmodule.so
|
||||
lib/python2.0/lib-dynload/fpetestmodule.so
|
||||
lib/python2.0/lib-dynload/grpmodule.so
|
||||
lib/python2.0/lib-dynload/mathmodule.so
|
||||
lib/python2.0/lib-dynload/md5module.so
|
||||
lib/python2.0/lib-dynload/mmapmodule.so
|
||||
lib/python2.0/lib-dynload/mpzmodule.so
|
||||
lib/python2.0/lib-dynload/newmodule.so
|
||||
lib/python2.0/lib-dynload/operator.so
|
||||
lib/python2.0/lib-dynload/parsermodule.so
|
||||
lib/python2.0/lib-dynload/pwdmodule.so
|
||||
lib/python2.0/lib-dynload/readline.so
|
||||
lib/python2.0/lib-dynload/resource.so
|
||||
lib/python2.0/lib-dynload/rotormodule.so
|
||||
lib/python2.0/lib-dynload/selectmodule.so
|
||||
lib/python2.0/lib-dynload/shamodule.so
|
||||
lib/python2.0/lib-dynload/stropmodule.so
|
||||
lib/python2.0/lib-dynload/structmodule.so
|
||||
lib/python2.0/lib-dynload/syslogmodule.so
|
||||
lib/python2.0/lib-dynload/termios.so
|
||||
lib/python2.0/lib-dynload/timemodule.so
|
||||
lib/python2.0/lib-dynload/timingmodule.so
|
||||
lib/python2.0/lib-dynload/ucnhash.so
|
||||
lib/python2.0/lib-dynload/unicodedata.so
|
||||
lib/python2.0/lib-dynload/zlibmodule.so
|
||||
@dirrm lib/python2.0/lib-dynload
|
||||
|
@ -1,2 +1,2 @@
|
||||
@comment $OpenBSD: PFRAG.tk,v 1.5 2000/11/20 22:15:30 jasoni Exp $
|
||||
lib/python1.6/lib-dynload/_tkinter.so
|
||||
@comment $OpenBSD: PFRAG.tk,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
||||
lib/python2.0/lib-dynload/_tkinter.so
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,246 +1,254 @@
|
||||
@comment $OpenBSD: PLIST-tools,v 1.6 2000/11/24 20:13:39 jasoni Exp $
|
||||
@comment $OpenBSD: PLIST-tools,v 1.7 2000/12/13 05:26:49 jasoni Exp $
|
||||
@option no-default-conflict
|
||||
@pkgdep python-1.6-*
|
||||
@pkgcfl python-tools-1.6
|
||||
lib/python1.6/Tools/README
|
||||
lib/python1.6/Tools/audiopy/README
|
||||
lib/python1.6/Tools/audiopy/audiopy
|
||||
lib/python1.6/Tools/bgen/README
|
||||
lib/python1.6/Tools/bgen/bgen/bgen.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenBuffer.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenGenerator.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenGeneratorGroup.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenHeapBuffer.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenModule.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenObjectDefinition.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenOutput.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenStackBuffer.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenStringBuffer.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenType.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenVariable.py
|
||||
lib/python1.6/Tools/bgen/bgen/bgenlocations.py
|
||||
lib/python1.6/Tools/bgen/bgen/macsupport.py
|
||||
lib/python1.6/Tools/bgen/bgen/scantools.py
|
||||
lib/python1.6/Tools/compiler/compile.py
|
||||
lib/python1.6/Tools/compiler/compiler/__init__.py
|
||||
lib/python1.6/Tools/compiler/compiler/ast.py
|
||||
lib/python1.6/Tools/compiler/compiler/consts.py
|
||||
lib/python1.6/Tools/compiler/compiler/misc.py
|
||||
lib/python1.6/Tools/compiler/compiler/pyassem.py
|
||||
lib/python1.6/Tools/compiler/compiler/pycodegen.py
|
||||
lib/python1.6/Tools/compiler/compiler/transformer.py
|
||||
lib/python1.6/Tools/compiler/compiler/visitor.py
|
||||
lib/python1.6/Tools/compiler/demo.py
|
||||
lib/python1.6/Tools/faqwiz/README
|
||||
lib/python1.6/Tools/faqwiz/faqconf.py
|
||||
lib/python1.6/Tools/faqwiz/faqcust.py
|
||||
lib/python1.6/Tools/faqwiz/faqw.py
|
||||
lib/python1.6/Tools/faqwiz/faqwiz.py
|
||||
lib/python1.6/Tools/freeze/.cvsignore
|
||||
lib/python1.6/Tools/freeze/README
|
||||
lib/python1.6/Tools/freeze/bkfile.py
|
||||
lib/python1.6/Tools/freeze/checkextensions.py
|
||||
lib/python1.6/Tools/freeze/checkextensions_win32.py
|
||||
lib/python1.6/Tools/freeze/extensions_win32.ini
|
||||
lib/python1.6/Tools/freeze/freeze.py
|
||||
lib/python1.6/Tools/freeze/hello.py
|
||||
lib/python1.6/Tools/freeze/makeconfig.py
|
||||
lib/python1.6/Tools/freeze/makefreeze.py
|
||||
lib/python1.6/Tools/freeze/makemakefile.py
|
||||
lib/python1.6/Tools/freeze/modulefinder.py
|
||||
lib/python1.6/Tools/freeze/parsesetup.py
|
||||
lib/python1.6/Tools/freeze/win32.html
|
||||
lib/python1.6/Tools/freeze/winmakemakefile.py
|
||||
lib/python1.6/Tools/i18n/pygettext.py
|
||||
lib/python1.6/Tools/idle/AutoExpand.py
|
||||
lib/python1.6/Tools/idle/AutoIndent.py
|
||||
lib/python1.6/Tools/idle/Bindings.py
|
||||
lib/python1.6/Tools/idle/BrowserControl.py
|
||||
lib/python1.6/Tools/idle/CallTipWindow.py
|
||||
lib/python1.6/Tools/idle/CallTips.py
|
||||
lib/python1.6/Tools/idle/ChangeLog
|
||||
lib/python1.6/Tools/idle/ClassBrowser.py
|
||||
lib/python1.6/Tools/idle/ColorDelegator.py
|
||||
lib/python1.6/Tools/idle/Debugger.py
|
||||
lib/python1.6/Tools/idle/Delegator.py
|
||||
lib/python1.6/Tools/idle/EditorWindow.py
|
||||
lib/python1.6/Tools/idle/FileList.py
|
||||
lib/python1.6/Tools/idle/FormatParagraph.py
|
||||
lib/python1.6/Tools/idle/FrameViewer.py
|
||||
lib/python1.6/Tools/idle/GrepDialog.py
|
||||
lib/python1.6/Tools/idle/IOBinding.py
|
||||
lib/python1.6/Tools/idle/Icons/folder.gif
|
||||
lib/python1.6/Tools/idle/Icons/minusnode.gif
|
||||
lib/python1.6/Tools/idle/Icons/openfolder.gif
|
||||
lib/python1.6/Tools/idle/Icons/plusnode.gif
|
||||
lib/python1.6/Tools/idle/Icons/python.gif
|
||||
lib/python1.6/Tools/idle/Icons/tk.gif
|
||||
lib/python1.6/Tools/idle/IdleConf.py
|
||||
lib/python1.6/Tools/idle/IdleHistory.py
|
||||
lib/python1.6/Tools/idle/MultiScrolledLists.py
|
||||
lib/python1.6/Tools/idle/MultiStatusBar.py
|
||||
lib/python1.6/Tools/idle/NEWS.txt
|
||||
lib/python1.6/Tools/idle/ObjectBrowser.py
|
||||
lib/python1.6/Tools/idle/OldStackViewer.py
|
||||
lib/python1.6/Tools/idle/OutputWindow.py
|
||||
lib/python1.6/Tools/idle/ParenMatch.py
|
||||
lib/python1.6/Tools/idle/PathBrowser.py
|
||||
lib/python1.6/Tools/idle/Percolator.py
|
||||
lib/python1.6/Tools/idle/PyParse.py
|
||||
lib/python1.6/Tools/idle/PyShell.py
|
||||
lib/python1.6/Tools/idle/README.txt
|
||||
lib/python1.6/Tools/idle/RemoteInterp.py
|
||||
lib/python1.6/Tools/idle/ReplaceDialog.py
|
||||
lib/python1.6/Tools/idle/ScriptBinding.py
|
||||
lib/python1.6/Tools/idle/ScrolledList.py
|
||||
lib/python1.6/Tools/idle/SearchBinding.py
|
||||
lib/python1.6/Tools/idle/SearchDialog.py
|
||||
lib/python1.6/Tools/idle/SearchDialogBase.py
|
||||
lib/python1.6/Tools/idle/SearchEngine.py
|
||||
lib/python1.6/Tools/idle/Separator.py
|
||||
lib/python1.6/Tools/idle/StackViewer.py
|
||||
lib/python1.6/Tools/idle/TODO.txt
|
||||
lib/python1.6/Tools/idle/ToolTip.py
|
||||
lib/python1.6/Tools/idle/TreeWidget.py
|
||||
lib/python1.6/Tools/idle/UndoDelegator.py
|
||||
lib/python1.6/Tools/idle/WidgetRedirector.py
|
||||
lib/python1.6/Tools/idle/WindowList.py
|
||||
lib/python1.6/Tools/idle/ZoomHeight.py
|
||||
lib/python1.6/Tools/idle/__init__.py
|
||||
lib/python1.6/Tools/idle/config-unix.txt
|
||||
lib/python1.6/Tools/idle/config-win.txt
|
||||
lib/python1.6/Tools/idle/config.txt
|
||||
lib/python1.6/Tools/idle/eventparse.py
|
||||
lib/python1.6/Tools/idle/extend.txt
|
||||
lib/python1.6/Tools/idle/help.txt
|
||||
lib/python1.6/Tools/idle/idle.bat
|
||||
lib/python1.6/Tools/idle/idle.py
|
||||
lib/python1.6/Tools/idle/idle.pyw
|
||||
lib/python1.6/Tools/idle/idlever.py
|
||||
lib/python1.6/Tools/idle/keydefs.py
|
||||
lib/python1.6/Tools/idle/testcode.py
|
||||
lib/python1.6/Tools/modulator/EXAMPLE.py
|
||||
lib/python1.6/Tools/modulator/README
|
||||
lib/python1.6/Tools/modulator/ScrolledListbox.py
|
||||
lib/python1.6/Tools/modulator/Templates/copyright
|
||||
lib/python1.6/Tools/modulator/Templates/module_head
|
||||
lib/python1.6/Tools/modulator/Templates/module_method
|
||||
lib/python1.6/Tools/modulator/Templates/module_tail
|
||||
lib/python1.6/Tools/modulator/Templates/object_head
|
||||
lib/python1.6/Tools/modulator/Templates/object_method
|
||||
lib/python1.6/Tools/modulator/Templates/object_mlist
|
||||
lib/python1.6/Tools/modulator/Templates/object_new
|
||||
lib/python1.6/Tools/modulator/Templates/object_structure
|
||||
lib/python1.6/Tools/modulator/Templates/object_tail
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_as_mapping
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_as_number
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_as_sequence
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_call
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_compare
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_dealloc
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_getattr
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_hash
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_print
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_repr
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_setattr
|
||||
lib/python1.6/Tools/modulator/Templates/object_tp_str
|
||||
lib/python1.6/Tools/modulator/Tkextra.py
|
||||
lib/python1.6/Tools/modulator/genmodule.py
|
||||
lib/python1.6/Tools/modulator/modulator.py
|
||||
lib/python1.6/Tools/modulator/varsubst.py
|
||||
lib/python1.6/Tools/pynche/ChipViewer.py
|
||||
lib/python1.6/Tools/pynche/ColorDB.py
|
||||
lib/python1.6/Tools/pynche/DetailsViewer.py
|
||||
lib/python1.6/Tools/pynche/ListViewer.py
|
||||
lib/python1.6/Tools/pynche/Main.py
|
||||
lib/python1.6/Tools/pynche/PyncheWidget.py
|
||||
lib/python1.6/Tools/pynche/README
|
||||
lib/python1.6/Tools/pynche/StripViewer.py
|
||||
lib/python1.6/Tools/pynche/Switchboard.py
|
||||
lib/python1.6/Tools/pynche/TextViewer.py
|
||||
lib/python1.6/Tools/pynche/TypeinViewer.py
|
||||
lib/python1.6/Tools/pynche/X/rgb.txt
|
||||
lib/python1.6/Tools/pynche/X/xlicense.txt
|
||||
lib/python1.6/Tools/pynche/__init__.py
|
||||
lib/python1.6/Tools/pynche/html40colors.txt
|
||||
lib/python1.6/Tools/pynche/namedcolors.txt
|
||||
lib/python1.6/Tools/pynche/pyColorChooser.py
|
||||
lib/python1.6/Tools/pynche/pynche
|
||||
lib/python1.6/Tools/pynche/pynche.pyw
|
||||
lib/python1.6/Tools/pynche/webcolors.txt
|
||||
lib/python1.6/Tools/pynche/websafe.txt
|
||||
lib/python1.6/Tools/scripts/README
|
||||
lib/python1.6/Tools/scripts/byteyears.py
|
||||
lib/python1.6/Tools/scripts/checkappend.py
|
||||
lib/python1.6/Tools/scripts/checkpyc.py
|
||||
lib/python1.6/Tools/scripts/classfix.py
|
||||
lib/python1.6/Tools/scripts/copytime.py
|
||||
lib/python1.6/Tools/scripts/crlf.py
|
||||
lib/python1.6/Tools/scripts/cvsfiles.py
|
||||
lib/python1.6/Tools/scripts/dutree.doc
|
||||
lib/python1.6/Tools/scripts/dutree.py
|
||||
lib/python1.6/Tools/scripts/eptags.py
|
||||
lib/python1.6/Tools/scripts/findlinksto.py
|
||||
lib/python1.6/Tools/scripts/fixcid.py
|
||||
lib/python1.6/Tools/scripts/fixheader.py
|
||||
lib/python1.6/Tools/scripts/fixnotice.py
|
||||
lib/python1.6/Tools/scripts/fixps.py
|
||||
lib/python1.6/Tools/scripts/ftpmirror.py
|
||||
lib/python1.6/Tools/scripts/gencodec.py
|
||||
lib/python1.6/Tools/scripts/h2py.py
|
||||
lib/python1.6/Tools/scripts/ifdef.py
|
||||
lib/python1.6/Tools/scripts/lfcr.py
|
||||
lib/python1.6/Tools/scripts/linktree.py
|
||||
lib/python1.6/Tools/scripts/lll.py
|
||||
lib/python1.6/Tools/scripts/logmerge.py
|
||||
lib/python1.6/Tools/scripts/mailerdaemon.py
|
||||
lib/python1.6/Tools/scripts/methfix.py
|
||||
lib/python1.6/Tools/scripts/mkreal.py
|
||||
lib/python1.6/Tools/scripts/ndiff.py
|
||||
lib/python1.6/Tools/scripts/nm2def.py
|
||||
lib/python1.6/Tools/scripts/objgraph.py
|
||||
lib/python1.6/Tools/scripts/parseentities.py
|
||||
lib/python1.6/Tools/scripts/pathfix.py
|
||||
lib/python1.6/Tools/scripts/pdeps.py
|
||||
lib/python1.6/Tools/scripts/pindent.py
|
||||
lib/python1.6/Tools/scripts/ptags.py
|
||||
lib/python1.6/Tools/scripts/rgrep.py
|
||||
lib/python1.6/Tools/scripts/suff.py
|
||||
lib/python1.6/Tools/scripts/sum5.py
|
||||
lib/python1.6/Tools/scripts/texi2html.py
|
||||
lib/python1.6/Tools/scripts/treesync.py
|
||||
lib/python1.6/Tools/scripts/untabify.py
|
||||
lib/python1.6/Tools/scripts/which.py
|
||||
lib/python1.6/Tools/scripts/xxci.py
|
||||
lib/python1.6/Tools/versioncheck/README
|
||||
lib/python1.6/Tools/versioncheck/_checkversion.py
|
||||
lib/python1.6/Tools/versioncheck/checkversions.py
|
||||
lib/python1.6/Tools/versioncheck/pyversioncheck.py
|
||||
lib/python1.6/Tools/webchecker/README
|
||||
lib/python1.6/Tools/webchecker/tktools.py
|
||||
lib/python1.6/Tools/webchecker/wcgui.py
|
||||
lib/python1.6/Tools/webchecker/wcmac.py
|
||||
lib/python1.6/Tools/webchecker/webchecker.py
|
||||
lib/python1.6/Tools/webchecker/websucker.py
|
||||
lib/python1.6/Tools/webchecker/wsgui.py
|
||||
lib/python1.6/Tools/world/README
|
||||
lib/python1.6/Tools/world/world
|
||||
@dirrm lib/python1.6/Tools/world
|
||||
@dirrm lib/python1.6/Tools/webchecker
|
||||
@dirrm lib/python1.6/Tools/versioncheck
|
||||
@dirrm lib/python1.6/Tools/scripts
|
||||
@dirrm lib/python1.6/Tools/pynche/X
|
||||
@dirrm lib/python1.6/Tools/pynche
|
||||
@dirrm lib/python1.6/Tools/modulator/Templates
|
||||
@dirrm lib/python1.6/Tools/modulator
|
||||
@dirrm lib/python1.6/Tools/idle/Icons
|
||||
@dirrm lib/python1.6/Tools/idle
|
||||
@dirrm lib/python1.6/Tools/i18n
|
||||
@dirrm lib/python1.6/Tools/freeze
|
||||
@dirrm lib/python1.6/Tools/faqwiz
|
||||
@dirrm lib/python1.6/Tools/compiler/compiler
|
||||
@dirrm lib/python1.6/Tools/compiler
|
||||
@dirrm lib/python1.6/Tools/bgen/bgen
|
||||
@dirrm lib/python1.6/Tools/bgen
|
||||
@dirrm lib/python1.6/Tools/audiopy
|
||||
@dirrm lib/python1.6/Tools
|
||||
@pkgdep python-2.0-*
|
||||
@pkgcfl python-tools-2.0
|
||||
lib/python2.0/Tools/README
|
||||
lib/python2.0/Tools/audiopy/README
|
||||
lib/python2.0/Tools/audiopy/audiopy
|
||||
lib/python2.0/Tools/bgen/README
|
||||
lib/python2.0/Tools/bgen/bgen/bgen.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenGenerator.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenGeneratorGroup.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenHeapBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenModule.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenObjectDefinition.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenOutput.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenStackBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenStringBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenType.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenVariable.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenlocations.py
|
||||
lib/python2.0/Tools/bgen/bgen/macsupport.py
|
||||
lib/python2.0/Tools/bgen/bgen/scantools.py
|
||||
lib/python2.0/Tools/compiler/compile.py
|
||||
lib/python2.0/Tools/compiler/compiler/__init__.py
|
||||
lib/python2.0/Tools/compiler/compiler/ast.py
|
||||
lib/python2.0/Tools/compiler/compiler/consts.py
|
||||
lib/python2.0/Tools/compiler/compiler/misc.py
|
||||
lib/python2.0/Tools/compiler/compiler/pyassem.py
|
||||
lib/python2.0/Tools/compiler/compiler/pycodegen.py
|
||||
lib/python2.0/Tools/compiler/compiler/transformer.py
|
||||
lib/python2.0/Tools/compiler/compiler/visitor.py
|
||||
lib/python2.0/Tools/compiler/demo.py
|
||||
lib/python2.0/Tools/compiler/dumppyc.py
|
||||
lib/python2.0/Tools/compiler/regrtest.py
|
||||
lib/python2.0/Tools/compiler/setup.py
|
||||
lib/python2.0/Tools/faqwiz/README
|
||||
lib/python2.0/Tools/faqwiz/faqconf.py
|
||||
lib/python2.0/Tools/faqwiz/faqcust.py
|
||||
lib/python2.0/Tools/faqwiz/faqw.py
|
||||
lib/python2.0/Tools/faqwiz/faqwiz.py
|
||||
lib/python2.0/Tools/freeze/README
|
||||
lib/python2.0/Tools/freeze/bkfile.py
|
||||
lib/python2.0/Tools/freeze/checkextensions.py
|
||||
lib/python2.0/Tools/freeze/checkextensions_win32.py
|
||||
lib/python2.0/Tools/freeze/extensions_win32.ini
|
||||
lib/python2.0/Tools/freeze/freeze.py
|
||||
lib/python2.0/Tools/freeze/hello.py
|
||||
lib/python2.0/Tools/freeze/makeconfig.py
|
||||
lib/python2.0/Tools/freeze/makefreeze.py
|
||||
lib/python2.0/Tools/freeze/makemakefile.py
|
||||
lib/python2.0/Tools/freeze/modulefinder.py
|
||||
lib/python2.0/Tools/freeze/parsesetup.py
|
||||
lib/python2.0/Tools/freeze/win32.html
|
||||
lib/python2.0/Tools/freeze/winmakemakefile.py
|
||||
lib/python2.0/Tools/i18n/msgfmt.py
|
||||
lib/python2.0/Tools/i18n/pygettext.py
|
||||
lib/python2.0/Tools/idle/AutoExpand.py
|
||||
lib/python2.0/Tools/idle/AutoIndent.py
|
||||
lib/python2.0/Tools/idle/Bindings.py
|
||||
lib/python2.0/Tools/idle/BrowserControl.py
|
||||
lib/python2.0/Tools/idle/CallTipWindow.py
|
||||
lib/python2.0/Tools/idle/CallTips.py
|
||||
lib/python2.0/Tools/idle/ChangeLog
|
||||
lib/python2.0/Tools/idle/ClassBrowser.py
|
||||
lib/python2.0/Tools/idle/ColorDelegator.py
|
||||
lib/python2.0/Tools/idle/Debugger.py
|
||||
lib/python2.0/Tools/idle/Delegator.py
|
||||
lib/python2.0/Tools/idle/EditorWindow.py
|
||||
lib/python2.0/Tools/idle/FileList.py
|
||||
lib/python2.0/Tools/idle/FormatParagraph.py
|
||||
lib/python2.0/Tools/idle/FrameViewer.py
|
||||
lib/python2.0/Tools/idle/GrepDialog.py
|
||||
lib/python2.0/Tools/idle/IOBinding.py
|
||||
lib/python2.0/Tools/idle/Icons/folder.gif
|
||||
lib/python2.0/Tools/idle/Icons/minusnode.gif
|
||||
lib/python2.0/Tools/idle/Icons/openfolder.gif
|
||||
lib/python2.0/Tools/idle/Icons/plusnode.gif
|
||||
lib/python2.0/Tools/idle/Icons/python.gif
|
||||
lib/python2.0/Tools/idle/Icons/tk.gif
|
||||
lib/python2.0/Tools/idle/IdleConf.py
|
||||
lib/python2.0/Tools/idle/IdleHistory.py
|
||||
lib/python2.0/Tools/idle/MultiScrolledLists.py
|
||||
lib/python2.0/Tools/idle/MultiStatusBar.py
|
||||
lib/python2.0/Tools/idle/NEWS.txt
|
||||
lib/python2.0/Tools/idle/ObjectBrowser.py
|
||||
lib/python2.0/Tools/idle/OldStackViewer.py
|
||||
lib/python2.0/Tools/idle/OutputWindow.py
|
||||
lib/python2.0/Tools/idle/ParenMatch.py
|
||||
lib/python2.0/Tools/idle/PathBrowser.py
|
||||
lib/python2.0/Tools/idle/Percolator.py
|
||||
lib/python2.0/Tools/idle/PyParse.py
|
||||
lib/python2.0/Tools/idle/PyShell.py
|
||||
lib/python2.0/Tools/idle/README.txt
|
||||
lib/python2.0/Tools/idle/RemoteInterp.py
|
||||
lib/python2.0/Tools/idle/ReplaceDialog.py
|
||||
lib/python2.0/Tools/idle/ScriptBinding.py
|
||||
lib/python2.0/Tools/idle/ScrolledList.py
|
||||
lib/python2.0/Tools/idle/SearchBinding.py
|
||||
lib/python2.0/Tools/idle/SearchDialog.py
|
||||
lib/python2.0/Tools/idle/SearchDialogBase.py
|
||||
lib/python2.0/Tools/idle/SearchEngine.py
|
||||
lib/python2.0/Tools/idle/Separator.py
|
||||
lib/python2.0/Tools/idle/StackViewer.py
|
||||
lib/python2.0/Tools/idle/TODO.txt
|
||||
lib/python2.0/Tools/idle/ToolTip.py
|
||||
lib/python2.0/Tools/idle/TreeWidget.py
|
||||
lib/python2.0/Tools/idle/UndoDelegator.py
|
||||
lib/python2.0/Tools/idle/WidgetRedirector.py
|
||||
lib/python2.0/Tools/idle/WindowList.py
|
||||
lib/python2.0/Tools/idle/ZoomHeight.py
|
||||
lib/python2.0/Tools/idle/__init__.py
|
||||
lib/python2.0/Tools/idle/config-unix.txt
|
||||
lib/python2.0/Tools/idle/config-win.txt
|
||||
lib/python2.0/Tools/idle/config.txt
|
||||
lib/python2.0/Tools/idle/eventparse.py
|
||||
lib/python2.0/Tools/idle/extend.txt
|
||||
lib/python2.0/Tools/idle/help.txt
|
||||
lib/python2.0/Tools/idle/idle.bat
|
||||
lib/python2.0/Tools/idle/idle.py
|
||||
lib/python2.0/Tools/idle/idle.pyw
|
||||
lib/python2.0/Tools/idle/idlever.py
|
||||
lib/python2.0/Tools/idle/keydefs.py
|
||||
lib/python2.0/Tools/idle/testcode.py
|
||||
lib/python2.0/Tools/modulator/EXAMPLE.py
|
||||
lib/python2.0/Tools/modulator/README
|
||||
lib/python2.0/Tools/modulator/ScrolledListbox.py
|
||||
lib/python2.0/Tools/modulator/Templates/copyright
|
||||
lib/python2.0/Tools/modulator/Templates/module_head
|
||||
lib/python2.0/Tools/modulator/Templates/module_method
|
||||
lib/python2.0/Tools/modulator/Templates/module_tail
|
||||
lib/python2.0/Tools/modulator/Templates/object_head
|
||||
lib/python2.0/Tools/modulator/Templates/object_method
|
||||
lib/python2.0/Tools/modulator/Templates/object_mlist
|
||||
lib/python2.0/Tools/modulator/Templates/object_new
|
||||
lib/python2.0/Tools/modulator/Templates/object_structure
|
||||
lib/python2.0/Tools/modulator/Templates/object_tail
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_mapping
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_number
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_sequence
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_call
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_compare
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_dealloc
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_getattr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_hash
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_print
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_repr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_setattr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_str
|
||||
lib/python2.0/Tools/modulator/Tkextra.py
|
||||
lib/python2.0/Tools/modulator/genmodule.py
|
||||
lib/python2.0/Tools/modulator/modulator.py
|
||||
lib/python2.0/Tools/modulator/varsubst.py
|
||||
lib/python2.0/Tools/pynche/ChipViewer.py
|
||||
lib/python2.0/Tools/pynche/ColorDB.py
|
||||
lib/python2.0/Tools/pynche/DetailsViewer.py
|
||||
lib/python2.0/Tools/pynche/ListViewer.py
|
||||
lib/python2.0/Tools/pynche/Main.py
|
||||
lib/python2.0/Tools/pynche/PyncheWidget.py
|
||||
lib/python2.0/Tools/pynche/README
|
||||
lib/python2.0/Tools/pynche/StripViewer.py
|
||||
lib/python2.0/Tools/pynche/Switchboard.py
|
||||
lib/python2.0/Tools/pynche/TextViewer.py
|
||||
lib/python2.0/Tools/pynche/TypeinViewer.py
|
||||
lib/python2.0/Tools/pynche/X/rgb.txt
|
||||
lib/python2.0/Tools/pynche/X/xlicense.txt
|
||||
lib/python2.0/Tools/pynche/__init__.py
|
||||
lib/python2.0/Tools/pynche/html40colors.txt
|
||||
lib/python2.0/Tools/pynche/namedcolors.txt
|
||||
lib/python2.0/Tools/pynche/pyColorChooser.py
|
||||
lib/python2.0/Tools/pynche/pynche
|
||||
lib/python2.0/Tools/pynche/pynche.pyw
|
||||
lib/python2.0/Tools/pynche/webcolors.txt
|
||||
lib/python2.0/Tools/pynche/websafe.txt
|
||||
lib/python2.0/Tools/scripts/README
|
||||
lib/python2.0/Tools/scripts/byteyears.py
|
||||
lib/python2.0/Tools/scripts/checkappend.py
|
||||
lib/python2.0/Tools/scripts/checkpyc.py
|
||||
lib/python2.0/Tools/scripts/classfix.py
|
||||
lib/python2.0/Tools/scripts/copytime.py
|
||||
lib/python2.0/Tools/scripts/crlf.py
|
||||
lib/python2.0/Tools/scripts/cvsfiles.py
|
||||
lib/python2.0/Tools/scripts/dutree.doc
|
||||
lib/python2.0/Tools/scripts/dutree.py
|
||||
lib/python2.0/Tools/scripts/eptags.py
|
||||
lib/python2.0/Tools/scripts/findlinksto.py
|
||||
lib/python2.0/Tools/scripts/fixcid.py
|
||||
lib/python2.0/Tools/scripts/fixheader.py
|
||||
lib/python2.0/Tools/scripts/fixnotice.py
|
||||
lib/python2.0/Tools/scripts/fixps.py
|
||||
lib/python2.0/Tools/scripts/ftpmirror.py
|
||||
lib/python2.0/Tools/scripts/gencodec.py
|
||||
lib/python2.0/Tools/scripts/h2py.py
|
||||
lib/python2.0/Tools/scripts/ifdef.py
|
||||
lib/python2.0/Tools/scripts/lfcr.py
|
||||
lib/python2.0/Tools/scripts/linktree.py
|
||||
lib/python2.0/Tools/scripts/lll.py
|
||||
lib/python2.0/Tools/scripts/logmerge.py
|
||||
lib/python2.0/Tools/scripts/mailerdaemon.py
|
||||
lib/python2.0/Tools/scripts/methfix.py
|
||||
lib/python2.0/Tools/scripts/mkreal.py
|
||||
lib/python2.0/Tools/scripts/ndiff.py
|
||||
lib/python2.0/Tools/scripts/nm2def.py
|
||||
lib/python2.0/Tools/scripts/objgraph.py
|
||||
lib/python2.0/Tools/scripts/parseentities.py
|
||||
lib/python2.0/Tools/scripts/pathfix.py
|
||||
lib/python2.0/Tools/scripts/pdeps.py
|
||||
lib/python2.0/Tools/scripts/pindent.py
|
||||
lib/python2.0/Tools/scripts/ptags.py
|
||||
lib/python2.0/Tools/scripts/redemo.py
|
||||
lib/python2.0/Tools/scripts/reindent.py
|
||||
lib/python2.0/Tools/scripts/rgrep.py
|
||||
lib/python2.0/Tools/scripts/suff.py
|
||||
lib/python2.0/Tools/scripts/sum5.py
|
||||
lib/python2.0/Tools/scripts/texi2html.py
|
||||
lib/python2.0/Tools/scripts/trace.py
|
||||
lib/python2.0/Tools/scripts/treesync.py
|
||||
lib/python2.0/Tools/scripts/untabify.py
|
||||
lib/python2.0/Tools/scripts/which.py
|
||||
lib/python2.0/Tools/scripts/xxci.py
|
||||
lib/python2.0/Tools/unicode/makeunicodedata.py
|
||||
lib/python2.0/Tools/versioncheck/README
|
||||
lib/python2.0/Tools/versioncheck/_checkversion.py
|
||||
lib/python2.0/Tools/versioncheck/checkversions.py
|
||||
lib/python2.0/Tools/versioncheck/pyversioncheck.py
|
||||
lib/python2.0/Tools/webchecker/README
|
||||
lib/python2.0/Tools/webchecker/tktools.py
|
||||
lib/python2.0/Tools/webchecker/wcgui.py
|
||||
lib/python2.0/Tools/webchecker/wcmac.py
|
||||
lib/python2.0/Tools/webchecker/webchecker.py
|
||||
lib/python2.0/Tools/webchecker/websucker.py
|
||||
lib/python2.0/Tools/webchecker/wsgui.py
|
||||
lib/python2.0/Tools/world/README
|
||||
lib/python2.0/Tools/world/world
|
||||
@dirrm lib/python2.0/Tools/world
|
||||
@dirrm lib/python2.0/Tools/webchecker
|
||||
@dirrm lib/python2.0/Tools/versioncheck
|
||||
@dirrm lib/python2.0/Tools/unicode
|
||||
@dirrm lib/python2.0/Tools/scripts
|
||||
@dirrm lib/python2.0/Tools/pynche/X
|
||||
@dirrm lib/python2.0/Tools/pynche
|
||||
@dirrm lib/python2.0/Tools/modulator/Templates
|
||||
@dirrm lib/python2.0/Tools/modulator
|
||||
@dirrm lib/python2.0/Tools/idle/Icons
|
||||
@dirrm lib/python2.0/Tools/idle
|
||||
@dirrm lib/python2.0/Tools/i18n
|
||||
@dirrm lib/python2.0/Tools/freeze
|
||||
@dirrm lib/python2.0/Tools/faqwiz
|
||||
@dirrm lib/python2.0/Tools/compiler/compiler
|
||||
@dirrm lib/python2.0/Tools/compiler
|
||||
@dirrm lib/python2.0/Tools/bgen/bgen
|
||||
@dirrm lib/python2.0/Tools/bgen
|
||||
@dirrm lib/python2.0/Tools/audiopy
|
||||
@dirrm lib/python2.0/Tools
|
||||
|
@ -1,100 +0,0 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2000/12/04 03:36:42 jasoni Exp $
|
||||
|
||||
VERSION= 2.0
|
||||
DISTNAME= python-${VERSION}
|
||||
CATEGORIES= lang
|
||||
NEED_VERSION= 1.310
|
||||
MASTER_SITES= ftp://www.python.org/pub/python/src/
|
||||
|
||||
HOMEPAGE= http://www.python.org/
|
||||
|
||||
MAINTAINER= Jason Ish <jasoni@openbsd.org>
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
FLAVORS= tk threads no_tools
|
||||
FLAVOR?= threads
|
||||
|
||||
# don't package tools if not needed
|
||||
.if empty(FLAVOR:L:Mno_tools)
|
||||
MULTI_PACKAGES= -tools
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mtk}
|
||||
LIB_DEPENDS= tk83::x11/tk/8.3
|
||||
SETUP_LOCAL+= Setup.tk
|
||||
.endif
|
||||
|
||||
CONFIGURE_STYLE= gnu dest
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
||||
CONFIGURE_ARGS+= --with-fpectl
|
||||
MAKE_FLAGS+= OPT="${CFLAGS}"
|
||||
|
||||
WRKDIST= ${WRKDIR}/Python-${VERSION}
|
||||
|
||||
# If libc_r exists, thread support is compiled in by default unless this
|
||||
# is a SPARC system where threads are currently non functional.
|
||||
.if ${FLAVOR:L:Mthreads}
|
||||
.if (${MACHINE_ARCH} == "sparc")
|
||||
BROKEN="Support for ${MACHINE_ARCH} threads is currently broken"
|
||||
.elif !exists(/usr/lib/libc_r.a)
|
||||
BROKEN="No thread support on this machine"
|
||||
.else
|
||||
CONFIGURE_ARGS+= --with-threads
|
||||
.endif
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-threads
|
||||
.endif
|
||||
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
NO64BIT= \#
|
||||
.endif
|
||||
|
||||
pre-configure:
|
||||
@echo ""
|
||||
@echo "***"
|
||||
@echo "*** Building Python with ${FLAVOR}"
|
||||
@echo "*** You can set ${FLAVORS} by saying"
|
||||
@echo "*** make FLAVOR=\"set of options\""
|
||||
@echo "***"
|
||||
@echo ""
|
||||
|
||||
# Depends on NO_SHARED_LIBS.
|
||||
post-configure:
|
||||
cd ${.CURDIR} && make finish-setup
|
||||
|
||||
post-install:
|
||||
@strip ${PREFIX}/bin/python
|
||||
@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python${VERSION}; tar -xf -)
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
||||
# The tools package is not flavor dependent.
|
||||
.if defined(SUBPACKAGE) && ${SUBPACKAGE} == "-tools"
|
||||
PKGNAME=python-tools-${VERSION}
|
||||
.endif
|
||||
.if ${FLAVOR:L:Mno_tools}
|
||||
PKGNAME:=${PKGNAME:S/-no_tools//}
|
||||
.endif
|
||||
|
||||
.if defined(NO64BIT)
|
||||
SED_PLIST+=-e '/%%mm%%/d'
|
||||
.else
|
||||
SED_PLIST+=-e '/%%mm%%/r${PKGDIR}/PFRAG.mm' -e '//d'
|
||||
.endif
|
||||
|
||||
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:U} == YES
|
||||
NOSHARED= \#
|
||||
.endif
|
||||
|
||||
finish-setup:
|
||||
@sed -e 's,@NOSHARED@,${NOSHARED},g' \
|
||||
-e 's,@NO64BIT@,${NO64BIT},g' \
|
||||
${FILESDIR}/Setup > ${WRKSRC}/Modules/Setup
|
||||
.for file in ${SETUP_LOCAL}
|
||||
@sed -e 's,@NOSHARED@,${NOSHARED},g' \
|
||||
${FILESDIR}/${file} >> ${WRKSRC}/Modules/Setup.local
|
||||
.endfor
|
@ -1,439 +0,0 @@
|
||||
# -*- makefile -*-
|
||||
# The file Setup is used by the makesetup script to construct the files
|
||||
# Makefile and config.c, from Makefile.pre and config.c.in,
|
||||
# respectively. The file Setup itself is initially copied from
|
||||
# Setup.in; once it exists it will not be overwritten, so you can edit
|
||||
# Setup to your heart's content. Note that Makefile.pre is created
|
||||
# from Makefile.pre.in by the toplevel configure script.
|
||||
|
||||
# (VPATH notes: Setup and Makefile.pre are in the build directory, as
|
||||
# are Makefile and config.c; the *.in files are in the source
|
||||
# directory.)
|
||||
|
||||
# Each line in this file describes one or more optional modules.
|
||||
# Comment out lines to suppress modules.
|
||||
# Lines have the following structure:
|
||||
#
|
||||
# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
|
||||
#
|
||||
# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
|
||||
# <cpparg> is anything starting with -I, -D, -U or -C
|
||||
# <library> is anything ending in .a or beginning with -l or -L
|
||||
# <module> is anything else but should be a valid Python
|
||||
# identifier (letters, digits, underscores, beginning with non-digit)
|
||||
#
|
||||
# (As the makesetup script changes, it may recognize some other
|
||||
# arguments as well, e.g. *.so and *.sl as libraries. See the big
|
||||
# case statement in the makesetup script.)
|
||||
#
|
||||
# Lines can also have the form
|
||||
#
|
||||
# <name> = <value>
|
||||
#
|
||||
# which defines a Make variable definition inserted into Makefile.in
|
||||
#
|
||||
# Finally, if a line contains just the word "*shared*" (without the
|
||||
# quotes but with the stars), then the following modules will not be
|
||||
# included in the config.c file, nor in the list of objects to be
|
||||
# added to the library archive, and their linker options won't be
|
||||
# added to the linker options, but rules to create their .o files and
|
||||
# their shared libraries will still be added to the Makefile, and
|
||||
# their names will be collected in the Make variable SHAREDMODS. This
|
||||
# is used to build modules as shared libraries. (They can be
|
||||
# installed using "make sharedinstall", which is implied by the
|
||||
# toplevel "make install" target.) (For compatibility,
|
||||
# *noconfig* has the same effect as *shared*.)
|
||||
#
|
||||
# In addition, *static* reverses this effect (negating a previous
|
||||
# *shared* line).
|
||||
|
||||
# NOTE: As a standard policy, as many modules as can be supported by a
|
||||
# platform should be present. The distribution comes with all modules
|
||||
# enabled that are supported by most platforms and don't require you
|
||||
# to ftp sources from elsewhere.
|
||||
|
||||
|
||||
# Some special rules to define PYTHONPATH.
|
||||
# Edit the definitions below to indicate which options you are using.
|
||||
# Don't add any whitespace or comments!
|
||||
|
||||
# Directories where library files get installed.
|
||||
# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
|
||||
DESTLIB=$(LIBDEST)
|
||||
MACHDESTLIB=$(BINLIBDEST)
|
||||
|
||||
# NOTE: all the paths are now relative to the prefix that is computed
|
||||
# at run time!
|
||||
|
||||
# Standard path -- don't edit.
|
||||
# No leading colon since this is the first entry.
|
||||
# Empty since this is now just the runtime prefix.
|
||||
DESTPATH=
|
||||
|
||||
# Site specific path components -- should begin with : if non-empty
|
||||
SITEPATH=
|
||||
|
||||
# Standard path components for test modules
|
||||
TESTPATH=
|
||||
|
||||
# Path components for machine- or system-dependent modules and shared libraries
|
||||
MACHDEPPATH=:plat-$(MACHDEP)
|
||||
|
||||
COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
||||
|
||||
# The modules listed here can't be built as shared libraries for
|
||||
# various reasons; therefore they are listed here instead of in the
|
||||
# normal order.
|
||||
|
||||
# Some modules that are normally always on:
|
||||
|
||||
regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style
|
||||
pcre pcremodule.c pypcre.c # Regular expressions, Perl style (for re.py)
|
||||
posix posixmodule.c # posix (UNIX) system calls
|
||||
signal signalmodule.c # signal(2)
|
||||
_sre _sre.c # Fredrik Lundh's new regular expressions
|
||||
|
||||
# The SGI specific GL module:
|
||||
|
||||
GLHACK=-Dclear=__GLclear
|
||||
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
|
||||
|
||||
# Pure module. Cannot be linked dynamically.
|
||||
# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
|
||||
#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
|
||||
#PURE_INCLS=-I/usr/local/include
|
||||
#PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
|
||||
#pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
|
||||
|
||||
# Uncommenting the following line tells makesetup that all following
|
||||
# modules are to be built as shared libraries (see above for more
|
||||
# detail; also note that *static* reverses this effect):
|
||||
|
||||
@NOSHARED@*shared*
|
||||
|
||||
# GNU readline. Unlike previous Python incarnations, GNU readline is
|
||||
# now incorporated in an optional module, configured in the Setup file
|
||||
# instead of by a configure script switch. You may have to insert a
|
||||
# -L option pointing to the directory where libreadline.* lives,
|
||||
# and you may have to change -ltermcap to -ltermlib or perhaps remove
|
||||
# it, depending on your system -- see the GNU readline instructions.
|
||||
# It's okay for this to be a shared library, too.
|
||||
|
||||
readline readline.c -lreadline -ltermcap
|
||||
|
||||
|
||||
# Modules that should always be present (non UNIX dependent):
|
||||
|
||||
array arraymodule.c # array objects
|
||||
cmath cmathmodule.c # -lm # complex math library functions
|
||||
math mathmodule.c # -lm # math library functions, e.g. sin()
|
||||
strop stropmodule.c # fast string operations implemented in C
|
||||
struct structmodule.c # binary structure packing/unpacking
|
||||
time timemodule.c # -lm # time operations and variables
|
||||
operator operator.c # operator.add() and similar goodies
|
||||
_codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
||||
|
||||
unicodedata unicodedata.c unicodedatabase.c
|
||||
# static Unicode character database
|
||||
ucnhash ucnhash.c # Unicode Character Name expansion hash table
|
||||
|
||||
_locale _localemodule.c # access to ISO C locale support
|
||||
|
||||
|
||||
# Modules with some UNIX dependencies -- on by default:
|
||||
# (If you have a really backward UNIX, select and socket may not be
|
||||
# supported...)
|
||||
|
||||
fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
|
||||
pwd pwdmodule.c # pwd(3)
|
||||
grp grpmodule.c # grp(3)
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
select selectmodule.c # select(2); not on ancient System V
|
||||
#_socket socketmodule.c # socket(2)
|
||||
|
||||
# Memory-mapped files (also works on Win32).
|
||||
mmap mmapmodule.c
|
||||
|
||||
# Socket module compiled with SSL support; you must edit the SSL variable:
|
||||
#SSL=/usr/local/ssl
|
||||
#_socket socketmodule.c \
|
||||
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
|
||||
# -L$(SSL)/lib -lssl -lcrypto
|
||||
_socket socketmodule.c \
|
||||
-DUSE_SSL -I/usr/include/ssl -lssl -lcrypto
|
||||
|
||||
# The crypt module is now disabled by default because it breaks builds
|
||||
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
|
||||
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
||||
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
||||
#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
|
||||
termios termios.c # Steen Lumholt's termios module
|
||||
resource resource.c # Jeremy Hylton's rlimit interface
|
||||
|
||||
|
||||
# Multimedia modules -- off by default.
|
||||
# These don't work for 64-bit platforms!!!
|
||||
# These represent audio samples or images as strings:
|
||||
|
||||
@NO64BIT@audioop audioop.c # Operations on audio samples
|
||||
@NO64BIT@imageop imageop.c # Operations on images
|
||||
@NO64BIT@rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
|
||||
|
||||
|
||||
# The md5 module implements the RSA Data Security, Inc. MD5
|
||||
# Message-Digest Algorithm, described in RFC 1321. The necessary files
|
||||
# md5c.c and md5.h are included here.
|
||||
|
||||
md5 md5module.c md5c.c
|
||||
|
||||
|
||||
# The sha module implements the SHA checksum algorithm.
|
||||
# (NIST's Secure Hash Algorithm.)
|
||||
sha shamodule.c
|
||||
|
||||
|
||||
# The mpz module interfaces to the GNU Multiple Precision library.
|
||||
# You need to ftp the GNU MP library.
|
||||
# The GMP variable must point to the GMP source directory.
|
||||
# This was originally written and tested against GMP 1.2 and 1.3.2.
|
||||
# It has been modified by Rob Hooft to work with 2.0.2 as well, but I
|
||||
# haven't tested it recently.
|
||||
|
||||
# A compatible MP library unencombered by the GPL also exists. It was
|
||||
# posted to comp.sources.misc in volume 40 and is widely available from
|
||||
# FTP archive sites. One URL for it is:
|
||||
# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
|
||||
|
||||
#GMP=/ufs/guido/src/gmp
|
||||
mpz mpzmodule.c /usr/lib/libgmp.a
|
||||
|
||||
|
||||
# SGI IRIX specific modules -- off by default.
|
||||
|
||||
# These module work on any SGI machine:
|
||||
|
||||
# *** gl must be enabled higher up in this file ***
|
||||
#fm fmmodule.c $(GLHACK) -lfm -lgl # Font Manager
|
||||
#sgi sgimodule.c # sgi.nap() and a few more
|
||||
|
||||
# This module requires the header file
|
||||
# /usr/people/4Dgifts/iristools/include/izoom.h:
|
||||
#imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities
|
||||
|
||||
|
||||
# These modules require the Multimedia Development Option (I think):
|
||||
|
||||
#al almodule.c -laudio # Audio Library
|
||||
#cd cdmodule.c -lcdaudio -lds -lmediad # CD Audio Library
|
||||
#cl clmodule.c -lcl -lawareaudio # Compression Library
|
||||
#sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11 # Starter Video
|
||||
|
||||
|
||||
# The FORMS library, by Mark Overmars, implements user interface
|
||||
# components such as dialogs and buttons using SGI's GL and FM
|
||||
# libraries. You must ftp the FORMS library separately from
|
||||
# ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
|
||||
# NOTE: if you want to be able to use FORMS and curses simultaneously
|
||||
# (or both link them statically into the same binary), you must
|
||||
# compile all of FORMS with the cc option "-Dclear=__GLclear".
|
||||
|
||||
# The FORMS variable must point to the FORMS subdirectory of the forms
|
||||
# toplevel directory:
|
||||
|
||||
#FORMS=/ufs/guido/src/forms/FORMS
|
||||
#fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
|
||||
|
||||
|
||||
# SunOS specific modules -- off by default:
|
||||
|
||||
#sunaudiodev sunaudiodev.c
|
||||
|
||||
|
||||
# Linux specific modules -- off by default:
|
||||
|
||||
#linuxaudiodev linuxaudiodev.c
|
||||
|
||||
|
||||
# George Neville-Neil's timing module:
|
||||
|
||||
timing timingmodule.c
|
||||
|
||||
|
||||
# The _tkinter module.
|
||||
#
|
||||
# The TKPATH variable is always enabled, to save you the effort.
|
||||
TKPATH=:lib-tk
|
||||
|
||||
# The command for _tkinter is long and site specific. Please
|
||||
# uncomment and/or edit those parts as indicated. If you don't have a
|
||||
# specific extension (e.g. Tix or BLT), leave the corresponding line
|
||||
# commented out. (Leave the trailing backslashes in! If you
|
||||
# experience strange errors, you may want to join all uncommented
|
||||
# lines and remove the backslashes -- the backslash interpretation is
|
||||
# done by the shell's "read" command and it may not be implemented on
|
||||
# every system.
|
||||
|
||||
# *** Always uncomment this (leave the leading underscore in!):
|
||||
# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
||||
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
|
||||
# -I/usr/local/include \
|
||||
# *** Uncomment and edit to reflect where your X11 header files are:
|
||||
# -I/usr/X11R6/include \
|
||||
# *** Or uncomment this for Solaris:
|
||||
# -I/usr/openwin/include \
|
||||
# *** Uncomment and edit for Tix extension only:
|
||||
# -DWITH_TIX -ltix4.1.8.0 \
|
||||
# *** Uncomment and edit for BLT extension only:
|
||||
# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
|
||||
# *** Uncomment and edit for PIL (TkImaging) extension only:
|
||||
# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
|
||||
# *** Uncomment and edit for TOGL extension only:
|
||||
# -DWITH_TOGL togl.c \
|
||||
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
|
||||
# -L/usr/local/lib \
|
||||
# *** Uncomment and edit to reflect your Tcl/Tk versions:
|
||||
# -ltk8.0 -ltcl8.0 \
|
||||
# *** Uncomment and edit to reflect where your X11 libraries are:
|
||||
# -L/usr/X11R6/lib \
|
||||
# *** Or uncomment this for Solaris:
|
||||
# -L/usr/openwin/lib \
|
||||
# *** Uncomment these for TOGL extension only:
|
||||
# -lGL -lGLU -lXext -lXmu \
|
||||
# *** Uncomment for AIX:
|
||||
# -lld \
|
||||
# *** Always uncomment this; X11 libraries to link with:
|
||||
# -lX11
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
||||
rotor rotormodule.c # enigma-inspired encryption
|
||||
syslog syslogmodule.c # syslog daemon interface
|
||||
|
||||
|
||||
# Curses support, requring the System V version of curses, often
|
||||
# provided by the ncurses library. e.g. on Linux, link with -lncurses
|
||||
# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
|
||||
# -L/usr/5lib before -lcurses).
|
||||
|
||||
_curses _cursesmodule.c -lcurses -ltermcap
|
||||
|
||||
|
||||
|
||||
# Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
|
||||
|
||||
new newmodule.c
|
||||
|
||||
|
||||
# Generic (SunOS / SVR4) dynamic loading module.
|
||||
# This is not needed for dynamic loading of Python modules --
|
||||
# it is a highly experimental and dangerous device for calling
|
||||
# *arbitrary* C functions in *arbitrary* shared libraries:
|
||||
|
||||
#dl dlmodule.c
|
||||
|
||||
|
||||
# Modules that provide persistent dictionary-like semantics. You will
|
||||
# probably want to arrange for at least one of them to be available on
|
||||
# your machine, though none are defined by default because of library
|
||||
# dependencies. The Python module anydbm.py provides an
|
||||
# implementation independent wrapper for these; dumbdbm.py provides
|
||||
# similar functionality (but slower of course) implemented in Python.
|
||||
|
||||
# The standard Unix dbm module:
|
||||
|
||||
dbm dbmmodule.c # dbm(3) may require -lndbm or similar
|
||||
|
||||
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
|
||||
|
||||
#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
|
||||
|
||||
|
||||
# Berkeley DB interface.
|
||||
#
|
||||
# This requires the Berkeley DB code, see
|
||||
# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
|
||||
#
|
||||
# Edit the variables DB and DBPORT to point to the db top directory
|
||||
# and the subdirectory of PORT where you built it.
|
||||
#
|
||||
# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
|
||||
# BSD DB 3.x.)
|
||||
|
||||
# Note: If a db.h file is found by configure, bsddb will be enabled
|
||||
# automatically via Setup.config.in. It only needs to be enabled here
|
||||
# if it is not automatically enabled there; check the generated
|
||||
# Setup.config before enabling it here.
|
||||
|
||||
#DB=/depot/sundry/src/berkeley-db/db.1.85
|
||||
#DBPORT=$(DB)/PORT/irix.5.3
|
||||
#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
|
||||
|
||||
|
||||
|
||||
# David Wayne Williams' soundex module (obsolete -- this will disappear!)
|
||||
#soundex soundex.c
|
||||
|
||||
# Helper module for various ascii-encoders
|
||||
binascii binascii.c
|
||||
|
||||
# Fred Drake's interface to the Python parser
|
||||
parser parsermodule.c
|
||||
|
||||
# Digital Creations' cStringIO and cPickle
|
||||
cStringIO cStringIO.c
|
||||
cPickle cPickle.c
|
||||
|
||||
|
||||
# Lee Busby's SIGFPE modules.
|
||||
# The library to link fpectl with is platform specific.
|
||||
# Choose *one* of the options below for fpectl:
|
||||
|
||||
# For SGI IRIX (tested on 5.3):
|
||||
#fpectl fpectlmodule.c -lfpe
|
||||
|
||||
# For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
|
||||
# (Without the compiler you don't have -lsunmath.)
|
||||
#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
|
||||
|
||||
# For other systems: see instructions in fpectlmodule.c.
|
||||
fpectl fpectlmodule.c
|
||||
|
||||
# Test module for fpectl. No extra libraries needed.
|
||||
fpetest fpetestmodule.c
|
||||
|
||||
# Andrew Kuchling's zlib module.
|
||||
# This require zlib 1.1.3 (or later).
|
||||
# See http://www.cdrom.com/pub/infozip/zlib/
|
||||
zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
||||
|
||||
# Interface to the Expat XML parser
|
||||
#
|
||||
# Expat is written by James Clark and must be downloaded separately
|
||||
# (see below). The pyexpat module was written by Paul Prescod after a
|
||||
# prototype by Jack Jansen.
|
||||
#
|
||||
# The Expat dist includes Windows .lib and .dll files. Home page is at
|
||||
# http://www.jclark.com/xml/expat.html, the current production release is
|
||||
# always ftp://ftp.jclark.com/pub/xml/expat.zip.
|
||||
#
|
||||
# EXPAT_DIR, below, should point to the expat/ directory created by
|
||||
# unpacking the Expat source distribution.
|
||||
#
|
||||
# Note: the expat build process doesn't yet build a libexpat.a; you can
|
||||
# do this manually while we try convince the author to add it. To do so,
|
||||
# cd to EXPAT_DIR, run "make" if you have not done so, then run:
|
||||
#
|
||||
# ar cr libexpat.a xmltok/*.o xmlparse/*.o
|
||||
#
|
||||
#EXPAT_DIR=/usr/local/src/expat
|
||||
#pyexpat pyexpat.c -I$(EXPAT_DIR)/xmlparse -L$(EXPAT_DIR) -lexpat
|
||||
|
||||
|
||||
# Example -- included for reference only:
|
||||
# xx xxmodule.c
|
@ -1,47 +0,0 @@
|
||||
@NOSHARED@*shared*
|
||||
|
||||
# The _tkinter module.
|
||||
#
|
||||
# The TKPATH variable is always enabled, to save you the effort.
|
||||
TKPATH=:lib-tk
|
||||
|
||||
# The command for _tkinter is long and site specific. Please
|
||||
# uncomment and/or edit those parts as indicated. If you don't have a
|
||||
# specific extension (e.g. Tix or BLT), leave the corresponding line
|
||||
# commented out. (Leave the trailing backslashes in! If you
|
||||
# experience strange errors, you may want to join all uncommented
|
||||
# lines and remove the backslashes -- the backslash interpretation is
|
||||
# done by the shell's "read" command and it may not be implemented on
|
||||
# every system.
|
||||
|
||||
# *** Always uncomment this (leave the leading underscore in!):
|
||||
_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
||||
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
|
||||
-I${PREFIX}/include/tcl8.3 \
|
||||
-I${PREFIX}/include/tk8.3 \
|
||||
# *** Uncomment and edit to reflect where your X11 header files are:
|
||||
-I${X11BASE}/include \
|
||||
# *** Or uncomment this for Solaris:
|
||||
# -I/usr/openwin/include \
|
||||
# *** Uncomment and edit for Tix extension only:
|
||||
# -DWITH_TIX -ltix4.1.8.0 \
|
||||
# *** Uncomment and edit for BLT extension only:
|
||||
# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
|
||||
# *** Uncomment and edit for PIL (TkImaging) extension only:
|
||||
# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
|
||||
# *** Uncomment and edit for TOGL extension only:
|
||||
# -DWITH_TOGL togl.c \
|
||||
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
|
||||
-L${PREFIX}/lib \
|
||||
# *** Uncomment and edit to reflect your Tcl/Tk versions:
|
||||
-ltk83 -ltcl83 \
|
||||
# *** Uncomment and edit to reflect where your X11 libraries are:
|
||||
-L${X11BASE}/lib \
|
||||
# *** Or uncomment this for Solaris:
|
||||
# -L/usr/openwin/lib \
|
||||
# *** Uncomment these for TOGL extension only:
|
||||
# -lGL -lGLU -lXext -lXmu \
|
||||
# *** Uncomment for AIX:
|
||||
# -lld \
|
||||
# *** Always uncomment this; X11 libraries to link with:
|
||||
-lX11
|
@ -1,3 +0,0 @@
|
||||
MD5 (python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
||||
RMD160 (python-2.0.tar.gz) = f3087ef879174cd5dfcf8e0117bb8b3770cc148c
|
||||
SHA1 (python-2.0.tar.gz) = 16ca42c5be1ddf5dc08d9b59b97f728f330e1fdc
|
@ -1,11 +0,0 @@
|
||||
--- Lib/tempfile.py.orig Mon Nov 6 00:47:23 2000
|
||||
+++ Lib/tempfile.py Mon Nov 6 00:48:02 2000
|
||||
@@ -23,7 +23,7 @@ def gettempdir():
|
||||
pwd = os.getcwd()
|
||||
except (AttributeError, os.error):
|
||||
pwd = os.curdir
|
||||
- attempdirs = ['/var/tmp', '/usr/tmp', '/tmp', pwd]
|
||||
+ attempdirs = ['/var/tmp', '/tmp', pwd]
|
||||
if os.name == 'nt':
|
||||
attempdirs.insert(0, 'C:\\TEMP')
|
||||
attempdirs.insert(0, '\\TEMP')
|
@ -1,22 +0,0 @@
|
||||
--- Makefile.in.orig Mon Oct 16 15:50:06 2000
|
||||
+++ Makefile.in Mon Nov 20 16:26:08 2000
|
||||
@@ -100,8 +100,8 @@ FILEMODE= 644
|
||||
|
||||
# Portable install script (configure doesn't always guess right)
|
||||
INSTALL= @srcdir@/install-sh -c
|
||||
-INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
|
||||
-INSTALL_DATA= ${INSTALL} -m $(FILEMODE)
|
||||
+INSTALL_PROGRAM=${BSD_INSTALL_SCRIPT}
|
||||
+INSTALL_DATA= ${BSD_INSTALL_DATA}
|
||||
|
||||
# Use this to make a link between python$(VERSION) and python in $(BINDIR)
|
||||
LN=@LN@
|
||||
@@ -260,7 +260,7 @@ maninstall:
|
||||
fi; \
|
||||
done
|
||||
$(INSTALL_DATA) $(srcdir)/Misc/python.man \
|
||||
- $(MANDIR)/man1/python.1
|
||||
+ $(MANDIR)/man1/python2.1
|
||||
|
||||
# Install the library
|
||||
PLATDIR= plat-$(MACHDEP)
|
@ -1,15 +0,0 @@
|
||||
--- Python/dynload_shlib.c.orig Mon Nov 6 00:50:29 2000
|
||||
+++ Python/dynload_shlib.c Mon Nov 6 00:51:25 2000
|
||||
@@ -55,8 +55,10 @@ dl_funcptr _PyImport_GetDynLoadFunc(cons
|
||||
}
|
||||
|
||||
/* ### should there be a leading underscore for some platforms? */
|
||||
- sprintf(funcname, "init%.200s", shortname);
|
||||
-
|
||||
+ /* sprintf(funcname, "init%.200s", shortname); */
|
||||
+ /* Like on OpenBSD */
|
||||
+ sprintf(funcname, "_init%.200s", shortname);
|
||||
+
|
||||
if (fp != NULL) {
|
||||
int i;
|
||||
struct stat statb;
|
@ -1 +0,0 @@
|
||||
interpreted object-oriented programming language
|
@ -1 +0,0 @@
|
||||
extra tools for python
|
@ -1,21 +0,0 @@
|
||||
Python is an interpreted, interactive, object-oriented
|
||||
programming language that combines remarkable power with
|
||||
very clear syntax. For an introduction to programming in
|
||||
Python you are referred to the Python Tutorial. The Python
|
||||
Library Reference documents built-in and standard types,
|
||||
constants, functions and modules. Finally, the Python
|
||||
Reference Manual describes the syntax and semantics of the
|
||||
core language in (perhaps too) much detail.
|
||||
|
||||
Python's basic power can be extended with your own modules
|
||||
written in C or C++. On most systems such modules may be
|
||||
dynamically loaded. Python is also adaptable as an
|
||||
extension language for existing applications. See the
|
||||
internal documentation for hints.
|
||||
|
||||
Flavors:
|
||||
tk - builds tkinter module, depends on Tk
|
||||
threads - build with thread support
|
||||
no_tools - do not build tools package
|
||||
|
||||
WWW: ${HOMEPAGE}
|
@ -1,19 +0,0 @@
|
||||
Python is an interpreted, interactive, object-oriented
|
||||
programming language that combines remarkable power with
|
||||
very clear syntax. For an introduction to programming in
|
||||
Python you are referred to the Python Tutorial. The Python
|
||||
Library Reference documents built-in and standard types,
|
||||
constants, functions and modules. Finally, the Python
|
||||
Reference Manual describes the syntax and semantics of the
|
||||
core language in (perhaps too) much detail.
|
||||
|
||||
Python's basic power can be extended with your own modules
|
||||
written in C or C++. On most systems such modules may be
|
||||
dynamically loaded. Python is also adaptable as an
|
||||
exten-sion language for existing applications. See the
|
||||
internal documentation for hints.
|
||||
|
||||
This package contains extra tools that python users
|
||||
may find useful.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
@ -1,4 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.mm,v 1.1.1.1 2000/12/04 03:36:44 jasoni Exp $
|
||||
lib/python2.0/lib-dynload/audioop.so
|
||||
lib/python2.0/lib-dynload/imageop.so
|
||||
lib/python2.0/lib-dynload/rgbimgmodule.so
|
@ -1,42 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2000/12/04 03:36:44 jasoni Exp $
|
||||
%%mm%%
|
||||
%%tk%%
|
||||
lib/python2.0/lib-dynload/_codecsmodule.so
|
||||
lib/python2.0/lib-dynload/_cursesmodule.so
|
||||
lib/python2.0/lib-dynload/_localemodule.so
|
||||
lib/python2.0/lib-dynload/_socketmodule.so
|
||||
lib/python2.0/lib-dynload/arraymodule.so
|
||||
lib/python2.0/lib-dynload/binascii.so
|
||||
lib/python2.0/lib-dynload/cPickle.so
|
||||
lib/python2.0/lib-dynload/cStringIO.so
|
||||
lib/python2.0/lib-dynload/cmathmodule.so
|
||||
lib/python2.0/lib-dynload/cryptmodule.so
|
||||
lib/python2.0/lib-dynload/dbmmodule.so
|
||||
lib/python2.0/lib-dynload/errnomodule.so
|
||||
lib/python2.0/lib-dynload/fcntlmodule.so
|
||||
lib/python2.0/lib-dynload/fpectlmodule.so
|
||||
lib/python2.0/lib-dynload/fpetestmodule.so
|
||||
lib/python2.0/lib-dynload/grpmodule.so
|
||||
lib/python2.0/lib-dynload/mathmodule.so
|
||||
lib/python2.0/lib-dynload/md5module.so
|
||||
lib/python2.0/lib-dynload/mmapmodule.so
|
||||
lib/python2.0/lib-dynload/mpzmodule.so
|
||||
lib/python2.0/lib-dynload/newmodule.so
|
||||
lib/python2.0/lib-dynload/operator.so
|
||||
lib/python2.0/lib-dynload/parsermodule.so
|
||||
lib/python2.0/lib-dynload/pwdmodule.so
|
||||
lib/python2.0/lib-dynload/readline.so
|
||||
lib/python2.0/lib-dynload/resource.so
|
||||
lib/python2.0/lib-dynload/rotormodule.so
|
||||
lib/python2.0/lib-dynload/selectmodule.so
|
||||
lib/python2.0/lib-dynload/shamodule.so
|
||||
lib/python2.0/lib-dynload/stropmodule.so
|
||||
lib/python2.0/lib-dynload/structmodule.so
|
||||
lib/python2.0/lib-dynload/syslogmodule.so
|
||||
lib/python2.0/lib-dynload/termios.so
|
||||
lib/python2.0/lib-dynload/timemodule.so
|
||||
lib/python2.0/lib-dynload/timingmodule.so
|
||||
lib/python2.0/lib-dynload/ucnhash.so
|
||||
lib/python2.0/lib-dynload/unicodedata.so
|
||||
lib/python2.0/lib-dynload/zlibmodule.so
|
||||
@dirrm lib/python2.0/lib-dynload
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.tk,v 1.1.1.1 2000/12/04 03:36:44 jasoni Exp $
|
||||
lib/python2.0/lib-dynload/_tkinter.so
|
File diff suppressed because it is too large
Load Diff
@ -1,254 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-tools,v 1.1.1.1 2000/12/04 03:36:45 jasoni Exp $
|
||||
@option no-default-conflict
|
||||
@pkgdep python-2.0-*
|
||||
@pkgcfl python-tools-2.0
|
||||
lib/python2.0/Tools/README
|
||||
lib/python2.0/Tools/audiopy/README
|
||||
lib/python2.0/Tools/audiopy/audiopy
|
||||
lib/python2.0/Tools/bgen/README
|
||||
lib/python2.0/Tools/bgen/bgen/bgen.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenGenerator.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenGeneratorGroup.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenHeapBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenModule.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenObjectDefinition.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenOutput.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenStackBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenStringBuffer.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenType.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenVariable.py
|
||||
lib/python2.0/Tools/bgen/bgen/bgenlocations.py
|
||||
lib/python2.0/Tools/bgen/bgen/macsupport.py
|
||||
lib/python2.0/Tools/bgen/bgen/scantools.py
|
||||
lib/python2.0/Tools/compiler/compile.py
|
||||
lib/python2.0/Tools/compiler/compiler/__init__.py
|
||||
lib/python2.0/Tools/compiler/compiler/ast.py
|
||||
lib/python2.0/Tools/compiler/compiler/consts.py
|
||||
lib/python2.0/Tools/compiler/compiler/misc.py
|
||||
lib/python2.0/Tools/compiler/compiler/pyassem.py
|
||||
lib/python2.0/Tools/compiler/compiler/pycodegen.py
|
||||
lib/python2.0/Tools/compiler/compiler/transformer.py
|
||||
lib/python2.0/Tools/compiler/compiler/visitor.py
|
||||
lib/python2.0/Tools/compiler/demo.py
|
||||
lib/python2.0/Tools/compiler/dumppyc.py
|
||||
lib/python2.0/Tools/compiler/regrtest.py
|
||||
lib/python2.0/Tools/compiler/setup.py
|
||||
lib/python2.0/Tools/faqwiz/README
|
||||
lib/python2.0/Tools/faqwiz/faqconf.py
|
||||
lib/python2.0/Tools/faqwiz/faqcust.py
|
||||
lib/python2.0/Tools/faqwiz/faqw.py
|
||||
lib/python2.0/Tools/faqwiz/faqwiz.py
|
||||
lib/python2.0/Tools/freeze/README
|
||||
lib/python2.0/Tools/freeze/bkfile.py
|
||||
lib/python2.0/Tools/freeze/checkextensions.py
|
||||
lib/python2.0/Tools/freeze/checkextensions_win32.py
|
||||
lib/python2.0/Tools/freeze/extensions_win32.ini
|
||||
lib/python2.0/Tools/freeze/freeze.py
|
||||
lib/python2.0/Tools/freeze/hello.py
|
||||
lib/python2.0/Tools/freeze/makeconfig.py
|
||||
lib/python2.0/Tools/freeze/makefreeze.py
|
||||
lib/python2.0/Tools/freeze/makemakefile.py
|
||||
lib/python2.0/Tools/freeze/modulefinder.py
|
||||
lib/python2.0/Tools/freeze/parsesetup.py
|
||||
lib/python2.0/Tools/freeze/win32.html
|
||||
lib/python2.0/Tools/freeze/winmakemakefile.py
|
||||
lib/python2.0/Tools/i18n/msgfmt.py
|
||||
lib/python2.0/Tools/i18n/pygettext.py
|
||||
lib/python2.0/Tools/idle/AutoExpand.py
|
||||
lib/python2.0/Tools/idle/AutoIndent.py
|
||||
lib/python2.0/Tools/idle/Bindings.py
|
||||
lib/python2.0/Tools/idle/BrowserControl.py
|
||||
lib/python2.0/Tools/idle/CallTipWindow.py
|
||||
lib/python2.0/Tools/idle/CallTips.py
|
||||
lib/python2.0/Tools/idle/ChangeLog
|
||||
lib/python2.0/Tools/idle/ClassBrowser.py
|
||||
lib/python2.0/Tools/idle/ColorDelegator.py
|
||||
lib/python2.0/Tools/idle/Debugger.py
|
||||
lib/python2.0/Tools/idle/Delegator.py
|
||||
lib/python2.0/Tools/idle/EditorWindow.py
|
||||
lib/python2.0/Tools/idle/FileList.py
|
||||
lib/python2.0/Tools/idle/FormatParagraph.py
|
||||
lib/python2.0/Tools/idle/FrameViewer.py
|
||||
lib/python2.0/Tools/idle/GrepDialog.py
|
||||
lib/python2.0/Tools/idle/IOBinding.py
|
||||
lib/python2.0/Tools/idle/Icons/folder.gif
|
||||
lib/python2.0/Tools/idle/Icons/minusnode.gif
|
||||
lib/python2.0/Tools/idle/Icons/openfolder.gif
|
||||
lib/python2.0/Tools/idle/Icons/plusnode.gif
|
||||
lib/python2.0/Tools/idle/Icons/python.gif
|
||||
lib/python2.0/Tools/idle/Icons/tk.gif
|
||||
lib/python2.0/Tools/idle/IdleConf.py
|
||||
lib/python2.0/Tools/idle/IdleHistory.py
|
||||
lib/python2.0/Tools/idle/MultiScrolledLists.py
|
||||
lib/python2.0/Tools/idle/MultiStatusBar.py
|
||||
lib/python2.0/Tools/idle/NEWS.txt
|
||||
lib/python2.0/Tools/idle/ObjectBrowser.py
|
||||
lib/python2.0/Tools/idle/OldStackViewer.py
|
||||
lib/python2.0/Tools/idle/OutputWindow.py
|
||||
lib/python2.0/Tools/idle/ParenMatch.py
|
||||
lib/python2.0/Tools/idle/PathBrowser.py
|
||||
lib/python2.0/Tools/idle/Percolator.py
|
||||
lib/python2.0/Tools/idle/PyParse.py
|
||||
lib/python2.0/Tools/idle/PyShell.py
|
||||
lib/python2.0/Tools/idle/README.txt
|
||||
lib/python2.0/Tools/idle/RemoteInterp.py
|
||||
lib/python2.0/Tools/idle/ReplaceDialog.py
|
||||
lib/python2.0/Tools/idle/ScriptBinding.py
|
||||
lib/python2.0/Tools/idle/ScrolledList.py
|
||||
lib/python2.0/Tools/idle/SearchBinding.py
|
||||
lib/python2.0/Tools/idle/SearchDialog.py
|
||||
lib/python2.0/Tools/idle/SearchDialogBase.py
|
||||
lib/python2.0/Tools/idle/SearchEngine.py
|
||||
lib/python2.0/Tools/idle/Separator.py
|
||||
lib/python2.0/Tools/idle/StackViewer.py
|
||||
lib/python2.0/Tools/idle/TODO.txt
|
||||
lib/python2.0/Tools/idle/ToolTip.py
|
||||
lib/python2.0/Tools/idle/TreeWidget.py
|
||||
lib/python2.0/Tools/idle/UndoDelegator.py
|
||||
lib/python2.0/Tools/idle/WidgetRedirector.py
|
||||
lib/python2.0/Tools/idle/WindowList.py
|
||||
lib/python2.0/Tools/idle/ZoomHeight.py
|
||||
lib/python2.0/Tools/idle/__init__.py
|
||||
lib/python2.0/Tools/idle/config-unix.txt
|
||||
lib/python2.0/Tools/idle/config-win.txt
|
||||
lib/python2.0/Tools/idle/config.txt
|
||||
lib/python2.0/Tools/idle/eventparse.py
|
||||
lib/python2.0/Tools/idle/extend.txt
|
||||
lib/python2.0/Tools/idle/help.txt
|
||||
lib/python2.0/Tools/idle/idle.bat
|
||||
lib/python2.0/Tools/idle/idle.py
|
||||
lib/python2.0/Tools/idle/idle.pyw
|
||||
lib/python2.0/Tools/idle/idlever.py
|
||||
lib/python2.0/Tools/idle/keydefs.py
|
||||
lib/python2.0/Tools/idle/testcode.py
|
||||
lib/python2.0/Tools/modulator/EXAMPLE.py
|
||||
lib/python2.0/Tools/modulator/README
|
||||
lib/python2.0/Tools/modulator/ScrolledListbox.py
|
||||
lib/python2.0/Tools/modulator/Templates/copyright
|
||||
lib/python2.0/Tools/modulator/Templates/module_head
|
||||
lib/python2.0/Tools/modulator/Templates/module_method
|
||||
lib/python2.0/Tools/modulator/Templates/module_tail
|
||||
lib/python2.0/Tools/modulator/Templates/object_head
|
||||
lib/python2.0/Tools/modulator/Templates/object_method
|
||||
lib/python2.0/Tools/modulator/Templates/object_mlist
|
||||
lib/python2.0/Tools/modulator/Templates/object_new
|
||||
lib/python2.0/Tools/modulator/Templates/object_structure
|
||||
lib/python2.0/Tools/modulator/Templates/object_tail
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_mapping
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_number
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_sequence
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_call
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_compare
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_dealloc
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_getattr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_hash
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_print
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_repr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_setattr
|
||||
lib/python2.0/Tools/modulator/Templates/object_tp_str
|
||||
lib/python2.0/Tools/modulator/Tkextra.py
|
||||
lib/python2.0/Tools/modulator/genmodule.py
|
||||
lib/python2.0/Tools/modulator/modulator.py
|
||||
lib/python2.0/Tools/modulator/varsubst.py
|
||||
lib/python2.0/Tools/pynche/ChipViewer.py
|
||||
lib/python2.0/Tools/pynche/ColorDB.py
|
||||
lib/python2.0/Tools/pynche/DetailsViewer.py
|
||||
lib/python2.0/Tools/pynche/ListViewer.py
|
||||
lib/python2.0/Tools/pynche/Main.py
|
||||
lib/python2.0/Tools/pynche/PyncheWidget.py
|
||||
lib/python2.0/Tools/pynche/README
|
||||
lib/python2.0/Tools/pynche/StripViewer.py
|
||||
lib/python2.0/Tools/pynche/Switchboard.py
|
||||
lib/python2.0/Tools/pynche/TextViewer.py
|
||||
lib/python2.0/Tools/pynche/TypeinViewer.py
|
||||
lib/python2.0/Tools/pynche/X/rgb.txt
|
||||
lib/python2.0/Tools/pynche/X/xlicense.txt
|
||||
lib/python2.0/Tools/pynche/__init__.py
|
||||
lib/python2.0/Tools/pynche/html40colors.txt
|
||||
lib/python2.0/Tools/pynche/namedcolors.txt
|
||||
lib/python2.0/Tools/pynche/pyColorChooser.py
|
||||
lib/python2.0/Tools/pynche/pynche
|
||||
lib/python2.0/Tools/pynche/pynche.pyw
|
||||
lib/python2.0/Tools/pynche/webcolors.txt
|
||||
lib/python2.0/Tools/pynche/websafe.txt
|
||||
lib/python2.0/Tools/scripts/README
|
||||
lib/python2.0/Tools/scripts/byteyears.py
|
||||
lib/python2.0/Tools/scripts/checkappend.py
|
||||
lib/python2.0/Tools/scripts/checkpyc.py
|
||||
lib/python2.0/Tools/scripts/classfix.py
|
||||
lib/python2.0/Tools/scripts/copytime.py
|
||||
lib/python2.0/Tools/scripts/crlf.py
|
||||
lib/python2.0/Tools/scripts/cvsfiles.py
|
||||
lib/python2.0/Tools/scripts/dutree.doc
|
||||
lib/python2.0/Tools/scripts/dutree.py
|
||||
lib/python2.0/Tools/scripts/eptags.py
|
||||
lib/python2.0/Tools/scripts/findlinksto.py
|
||||
lib/python2.0/Tools/scripts/fixcid.py
|
||||
lib/python2.0/Tools/scripts/fixheader.py
|
||||
lib/python2.0/Tools/scripts/fixnotice.py
|
||||
lib/python2.0/Tools/scripts/fixps.py
|
||||
lib/python2.0/Tools/scripts/ftpmirror.py
|
||||
lib/python2.0/Tools/scripts/gencodec.py
|
||||
lib/python2.0/Tools/scripts/h2py.py
|
||||
lib/python2.0/Tools/scripts/ifdef.py
|
||||
lib/python2.0/Tools/scripts/lfcr.py
|
||||
lib/python2.0/Tools/scripts/linktree.py
|
||||
lib/python2.0/Tools/scripts/lll.py
|
||||
lib/python2.0/Tools/scripts/logmerge.py
|
||||
lib/python2.0/Tools/scripts/mailerdaemon.py
|
||||
lib/python2.0/Tools/scripts/methfix.py
|
||||
lib/python2.0/Tools/scripts/mkreal.py
|
||||
lib/python2.0/Tools/scripts/ndiff.py
|
||||
lib/python2.0/Tools/scripts/nm2def.py
|
||||
lib/python2.0/Tools/scripts/objgraph.py
|
||||
lib/python2.0/Tools/scripts/parseentities.py
|
||||
lib/python2.0/Tools/scripts/pathfix.py
|
||||
lib/python2.0/Tools/scripts/pdeps.py
|
||||
lib/python2.0/Tools/scripts/pindent.py
|
||||
lib/python2.0/Tools/scripts/ptags.py
|
||||
lib/python2.0/Tools/scripts/redemo.py
|
||||
lib/python2.0/Tools/scripts/reindent.py
|
||||
lib/python2.0/Tools/scripts/rgrep.py
|
||||
lib/python2.0/Tools/scripts/suff.py
|
||||
lib/python2.0/Tools/scripts/sum5.py
|
||||
lib/python2.0/Tools/scripts/texi2html.py
|
||||
lib/python2.0/Tools/scripts/trace.py
|
||||
lib/python2.0/Tools/scripts/treesync.py
|
||||
lib/python2.0/Tools/scripts/untabify.py
|
||||
lib/python2.0/Tools/scripts/which.py
|
||||
lib/python2.0/Tools/scripts/xxci.py
|
||||
lib/python2.0/Tools/unicode/makeunicodedata.py
|
||||
lib/python2.0/Tools/versioncheck/README
|
||||
lib/python2.0/Tools/versioncheck/_checkversion.py
|
||||
lib/python2.0/Tools/versioncheck/checkversions.py
|
||||
lib/python2.0/Tools/versioncheck/pyversioncheck.py
|
||||
lib/python2.0/Tools/webchecker/README
|
||||
lib/python2.0/Tools/webchecker/tktools.py
|
||||
lib/python2.0/Tools/webchecker/wcgui.py
|
||||
lib/python2.0/Tools/webchecker/wcmac.py
|
||||
lib/python2.0/Tools/webchecker/webchecker.py
|
||||
lib/python2.0/Tools/webchecker/websucker.py
|
||||
lib/python2.0/Tools/webchecker/wsgui.py
|
||||
lib/python2.0/Tools/world/README
|
||||
lib/python2.0/Tools/world/world
|
||||
@dirrm lib/python2.0/Tools/world
|
||||
@dirrm lib/python2.0/Tools/webchecker
|
||||
@dirrm lib/python2.0/Tools/versioncheck
|
||||
@dirrm lib/python2.0/Tools/unicode
|
||||
@dirrm lib/python2.0/Tools/scripts
|
||||
@dirrm lib/python2.0/Tools/pynche/X
|
||||
@dirrm lib/python2.0/Tools/pynche
|
||||
@dirrm lib/python2.0/Tools/modulator/Templates
|
||||
@dirrm lib/python2.0/Tools/modulator
|
||||
@dirrm lib/python2.0/Tools/idle/Icons
|
||||
@dirrm lib/python2.0/Tools/idle
|
||||
@dirrm lib/python2.0/Tools/i18n
|
||||
@dirrm lib/python2.0/Tools/freeze
|
||||
@dirrm lib/python2.0/Tools/faqwiz
|
||||
@dirrm lib/python2.0/Tools/compiler/compiler
|
||||
@dirrm lib/python2.0/Tools/compiler
|
||||
@dirrm lib/python2.0/Tools/bgen/bgen
|
||||
@dirrm lib/python2.0/Tools/bgen
|
||||
@dirrm lib/python2.0/Tools/audiopy
|
||||
@dirrm lib/python2.0/Tools
|
Loading…
Reference in New Issue
Block a user