Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 309e8ac

Browse files
committed
moved Demo/freeze to Tools/freeze
1 parent 5f85880 commit 309e8ac

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Tools/freeze/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Ideally, you should be able to use it as follows:
7575

7676
where hello.py is your program and freeze.py is the main file of
7777
Freeze (in actuality, you'll probably specify an absolute pathname
78-
such as /ufs/guido/src/python/Demo/freeze/freeze.py).
78+
such as /ufs/guido/src/python/Tools/freeze/freeze.py).
7979

8080
Unfortunately, this doesn't work. Well, it might, but somehow it's
8181
extremely unlikely that it'll work on the first try. (If it does,
@@ -107,7 +107,7 @@ How do I configure Freeze?
107107

108108
It's a good idea to change the line marked with XXX in freeze.py (an
109109
assignment to variable PACK) to point to the absolute pathname of the
110-
directory where Freeze lives (Demo/freeze in the Python source tree.)
110+
directory where Freeze lives (Tools/freeze in the Python source tree.)
111111
This makes it possible to call Freeze from other directories.
112112

113113
You can also edit the assignment to variable PREFIX -- this saves a

Tools/freeze/freeze.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"""
3535

3636

37-
# XXX Change the following line to point to your Demo/freeze directory
38-
PACK = '/ufs/guido/src/python/Demo/freeze'
37+
# XXX Change the following line to point to your Tools/freeze directory
38+
PACK = '/ufs/guido/src/python/Tools/freeze'
3939

4040
# XXX Change the following line to point to your install prefix
4141
PREFIX = '/usr/local'

0 commit comments

Comments
 (0)