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
41ffccbb
Kaydet (Commit)
41ffccbb
authored
Nis 01, 1993
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
*** empty log message ***
üst
9db0c1f7
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
16 additions
and
16 deletions
+16
-16
fact.py
Demo/scripts/fact.py
+1
-1
makedir.py
Demo/scripts/makedir.py
+1
-1
pi.py
Demo/scripts/pi.py
+1
-1
primes.py
Demo/scripts/primes.py
+1
-1
byteyears.py
Tools/scripts/byteyears.py
+1
-1
checkpyc.py
Tools/scripts/checkpyc.py
+1
-1
copytime.py
Tools/scripts/copytime.py
+1
-1
dutree.py
Tools/scripts/dutree.py
+1
-1
eptags.py
Tools/scripts/eptags.py
+1
-1
findlinksto.py
Tools/scripts/findlinksto.py
+1
-1
h2py.py
Tools/scripts/h2py.py
+1
-1
linktree.py
Tools/scripts/linktree.py
+1
-1
lll.py
Tools/scripts/lll.py
+1
-1
ptags.py
Tools/scripts/ptags.py
+1
-1
suff.py
Tools/scripts/suff.py
+1
-1
which.py
Tools/scripts/which.py
+1
-1
No files found.
Demo/scripts/fact.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Factorize numbers.
# Factorize numbers.
# The algorithm is not efficient, but easy to understand.
# The algorithm is not efficient, but easy to understand.
...
...
Demo/scripts/makedir.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Like mkdir, but also make intermediate directories if necessary.
# Like mkdir, but also make intermediate directories if necessary.
# It is not an error if the given directory already exists (as long
# It is not an error if the given directory already exists (as long
...
...
Demo/scripts/pi.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Print digits of pi forever.
# Print digits of pi forever.
#
#
...
...
Demo/scripts/primes.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Print prime numbers in a given range
# Print prime numbers in a given range
...
...
Tools/scripts/byteyears.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Print the product of age and size of each file, in suitable units.
# Print the product of age and size of each file, in suitable units.
#
#
...
...
Tools/scripts/checkpyc.py
Dosyayı görüntüle @
41ffccbb
#! /ufs/guido/bin/sgi/python
#! /ufs/guido/bin/sgi/python
#! /usr/local/python
#! /usr/local/
bin/
python
# Check that all ".pyc" files exist and are up-to-date
# Check that all ".pyc" files exist and are up-to-date
# Uses module 'os'
# Uses module 'os'
...
...
Tools/scripts/copytime.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Copy one file's atime and mtime to another
# Copy one file's atime and mtime to another
...
...
Tools/scripts/dutree.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Format du output in a tree shape
# Format du output in a tree shape
import
os
,
string
,
sys
import
os
,
string
,
sys
...
...
Tools/scripts/eptags.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# eptags
# eptags
#
#
...
...
Tools/scripts/findlinksto.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# findlinksto
# findlinksto
#
#
...
...
Tools/scripts/h2py.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Read #define's from stdin and translate to Python code on stdout.
# Read #define's from stdin and translate to Python code on stdout.
# Very primitive: non-#define's are ignored, no check for valid Python
# Very primitive: non-#define's are ignored, no check for valid Python
...
...
Tools/scripts/linktree.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# linktree
# linktree
#
#
...
...
Tools/scripts/lll.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Find symbolic links and show where they point to.
# Find symbolic links and show where they point to.
# Arguments are directories to search; default is current directory.
# Arguments are directories to search; default is current directory.
...
...
Tools/scripts/ptags.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# ptags
# ptags
#
#
...
...
Tools/scripts/suff.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# suff
# suff
#
#
...
...
Tools/scripts/which.py
Dosyayı görüntüle @
41ffccbb
#! /usr/local/python
#! /usr/local/
bin/
python
# Variant of "which".
# Variant of "which".
# On stderr, near and total misses are reported.
# On stderr, near and total misses are reported.
...
...
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