Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
25e44616
Kaydet (Commit)
25e44616
authored
May 13, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove references to stdwin which was removed long ago.
üst
7072559d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
18 deletions
+6
-18
README
Demo/threads/README
+0
-2
Makefile.deps
Doc/Makefile.deps
+0
-1
lib.tex
Doc/lib/lib.tex
+0
-2
libstdwin.tex
Doc/lib/libstdwin.tex
+0
-0
listmodules
Doc/tools/listmodules
+6
-7
cheatsheet
Misc/cheatsheet
+0
-6
No files found.
Demo/threads/README
Dosyayı görüntüle @
25e44616
...
@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
...
@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
These are mostly "proof of concept" type applications:
These are mostly "proof of concept" type applications:
Generator.py Generator class implemented with threads.
Generator.py Generator class implemented with threads.
find.py Parallelized "find(1)" (looks for directories).
sync.py Condition variables primitives by Tim Peters.
sync.py Condition variables primitives by Tim Peters.
telnet.py Version of ../sockets/telnet.py using threads.
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)
Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
fcmp.py Example of above, by Tim
fcmp.py Example of above, by Tim
...
...
Doc/Makefile.deps
Dosyayı görüntüle @
25e44616
...
@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
...
@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
lib/libmd5.tex
\
lib/libmd5.tex
\
lib/libsha.tex
\
lib/libsha.tex
\
lib/libhmac.tex
\
lib/libhmac.tex
\
lib/libstdwin.tex
\
lib/libsgi.tex
\
lib/libsgi.tex
\
lib/libal.tex
\
lib/libal.tex
\
lib/libcd.tex
\
lib/libcd.tex
\
...
...
Doc/lib/lib.tex
Dosyayı görüntüle @
25e44616
...
@@ -431,8 +431,6 @@ and how to embed it in other applications.
...
@@ -431,8 +431,6 @@ and how to embed it in other applications.
% OTHER PLATFORM-SPECIFIC STUFF
% OTHER PLATFORM-SPECIFIC STUFF
% =============
% =============
%\input{libstdwin} % STDWIN ONLY
\input
{
libsgi
}
% SGI IRIX ONLY
\input
{
libsgi
}
% SGI IRIX ONLY
\input
{
libal
}
\input
{
libal
}
\input
{
libcd
}
\input
{
libcd
}
...
...
Doc/lib/libstdwin.tex
deleted
100644 → 0
Dosyayı görüntüle @
7072559d
This diff is collapsed.
Click to expand it.
Doc/tools/listmodules
Dosyayı görüntüle @
25e44616
...
@@ -34,12 +34,11 @@ import getopt
...
@@ -34,12 +34,11 @@ import getopt
import
glob
import
glob
import
os
import
os
import
re
import
re
import
string
import
sys
import
sys
REMOVE_DIRS
=
[
"
dos-8x3"
,
"
encodings"
,
"distutils"
,
REMOVE_DIRS
=
[
"encodings"
,
"distutils"
,
"lib-old"
,
"
lib-stdwin"
,
"test"
]
"lib-old"
,
""
test
"]
def main():
def main():
...
@@ -156,17 +155,17 @@ def main():
...
@@ -156,17 +155,17 @@ def main():
else:
else:
modules = modules_by_name.keys()
modules = modules_by_name.keys()
modules.sort()
modules.sort()
print
string
.
join
(
modules
,
"
\n
"
)
print
"
\
n
".join(modules
)
def ignore_from_modulelist(data, ignore_dict):
def ignore_from_modulelist(data, ignore_dict):
for
name
in
string
.
split
(
data
):
for name in
data.split(
):
ignore_dict[name] = name
ignore_dict[name] = name
def ignore_from_idx(data, ignore_dict):
def ignore_from_idx(data, ignore_dict):
data
=
string
.
replace
(
data
,
r"\hackscore {}"
,
"_"
)
data =
data.replace(
r"
\
hackscore
{}
", "
_
")
rx = re.compile(r"
\\
indexentry
\
s
*
{([
^
@
]
*
)
@
")
rx = re.compile(r"
\\
indexentry
\
s
*
{([
^
@
]
*
)
@
")
for
line
in
string
.
split
(
data
,
"
\n
"
):
for line in
data.split(
"
\
n
"):
m = rx.match(line)
m = rx.match(line)
if m:
if m:
name = m.group(1)
name = m.group(1)
...
...
Misc/cheatsheet
Dosyayı görüntüle @
25e44616
...
@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files.
...
@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files.
sha Interface to the SHA message digest algorithm
sha Interface to the SHA message digest algorithm
HMAC Keyed-Hashing for Message Authentication -- RFC 2104.
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)
* SGI IRIX * (4 & 5)
al SGI audio facilities
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