Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
25e44616
Commit
25e44616
authored
May 13, 2007
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to stdwin which was removed long ago.
parent
7072559d
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
850 deletions
+6
-850
Demo/threads/README
Demo/threads/README
+0
-2
Doc/Makefile.deps
Doc/Makefile.deps
+0
-1
Doc/lib/lib.tex
Doc/lib/lib.tex
+0
-2
Doc/lib/libstdwin.tex
Doc/lib/libstdwin.tex
+0
-832
Doc/tools/listmodules
Doc/tools/listmodules
+6
-7
Misc/cheatsheet
Misc/cheatsheet
+0
-6
No files found.
Demo/threads/README
View file @
25e44616
...
...
@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
These are mostly "proof of concept" type applications:
Generator.py Generator class implemented with threads.
find.py Parallelized "find(1)" (looks for directories).
sync.py Condition variables primitives by Tim Peters.
telnet.py Version of ../sockets/telnet.py using threads.
wpi.py Version of ../scripts/pi.py using threads (needs stdwin).
Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
fcmp.py Example of above, by Tim
...
...
Doc/Makefile.deps
View file @
25e44616
...
...
@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
lib/libmd5.tex
\
lib/libsha.tex
\
lib/libhmac.tex
\
lib/libstdwin.tex
\
lib/libsgi.tex
\
lib/libal.tex
\
lib/libcd.tex
\
...
...
Doc/lib/lib.tex
View file @
25e44616
...
...
@@ -431,8 +431,6 @@ and how to embed it in other applications.
% OTHER PLATFORM-SPECIFIC STUFF
% =============
%\input{libstdwin} % STDWIN ONLY
\input
{
libsgi
}
% SGI IRIX ONLY
\input
{
libal
}
\input
{
libcd
}
...
...
Doc/lib/libstdwin.tex
deleted
100644 → 0
View file @
7072559d
This diff is collapsed.
Click to expand it.
Doc/tools/listmodules
View file @
25e44616
...
...
@@ -34,12 +34,11 @@ import getopt
import
glob
import
os
import
re
import
string
import
sys
REMOVE_DIRS
=
[
"
dos-8x3"
,
"
encodings"
,
"distutils"
,
"lib-old"
,
"
lib-stdwin"
,
"test"
]
REMOVE_DIRS
=
[
"encodings"
,
"distutils"
,
"lib-old"
,
""
test
"]
def main():
...
...
@@ -156,17 +155,17 @@ def main():
else:
modules = modules_by_name.keys()
modules.sort()
print
string
.
join
(
modules
,
"
\
n
"
)
print
"
\
n
".join(modules
)
def ignore_from_modulelist(data, ignore_dict):
for
name
in
string
.
split
(
data
):
for name in
data.split(
):
ignore_dict[name] = name
def ignore_from_idx(data, ignore_dict):
data
=
string
.
replace
(
data
,
r"\
h
ackscore {}"
,
"_"
)
data =
data.replace(
r"
\
hackscore
{}
", "
_
")
rx = re.compile(r"
\\
indexentry
\
s
*
{([
^@
]
*
)
@
")
for line in
string.split(data,
"
\
n
"):
for line in
data.split(
"
\
n
"):
m = rx.match(line)
if m:
name = m.group(1)
...
...
Misc/cheatsheet
View file @
25e44616
...
...
@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files.
sha Interface to the SHA message digest algorithm
HMAC Keyed-Hashing for Message Authentication -- RFC 2104.
* Stdwin * Standard Window System
stdwin Standard Window System interface
stdwinevents Stdwin event, command, and selection constants
rect Rectangle manipulation operations
* SGI IRIX * (4 & 5)
al SGI audio facilities
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment