*** empty log message ***

This commit is contained in:
Guido van Rossum 1993-04-01 20:50:35 +00:00
parent 9db0c1f7c7
commit 41ffccbba7
16 changed files with 16 additions and 16 deletions

View file

@ -1,4 +1,4 @@
#! /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.

View file

@ -1,4 +1,4 @@
#! /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

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# Print digits of pi forever. # Print digits of pi forever.
# #

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# Print prime numbers in a given range # Print prime numbers in a given range

View file

@ -1,4 +1,4 @@
#! /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.
# #

View file

@ -1,5 +1,5 @@
#! /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'

View file

@ -1,4 +1,4 @@
#! /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

View file

@ -1,4 +1,4 @@
#! /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

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# eptags # eptags
# #

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# findlinksto # findlinksto
# #

View file

@ -1,4 +1,4 @@
#! /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

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# linktree # linktree
# #

View file

@ -1,4 +1,4 @@
#! /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.

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# ptags # ptags
# #

View file

@ -1,4 +1,4 @@
#! /usr/local/python #! /usr/local/bin/python
# suff # suff
# #

View file

@ -1,4 +1,4 @@
#! /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.