diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-25 21:11:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-25 21:11:45 (GMT) |
commit | 0b4915e99ec7e7cd6b4923aa827e1541b67b78a9 (patch) | |
tree | c6afc3152e04b0bd3882c9ed40e455b5eb508163 /Tools | |
parent | f4841e2df7e2c3ccf7e5debc9423e0d8ee271bb4 (diff) | |
download | cpython-0b4915e99ec7e7cd6b4923aa827e1541b67b78a9.zip cpython-0b4915e99ec7e7cd6b4923aa827e1541b67b78a9.tar.gz cpython-0b4915e99ec7e7cd6b4923aa827e1541b67b78a9.tar.bz2 |
install idle and pydoc with a 3 suffix #5756
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/idle3 (renamed from Tools/scripts/idle) | 2 | ||||
-rwxr-xr-x | Tools/scripts/pydoc3 (renamed from Tools/scripts/pydoc) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/idle b/Tools/scripts/idle3 index 1ba2a2c..8ee92c2 100755 --- a/Tools/scripts/idle +++ b/Tools/scripts/idle3 @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 from idlelib.PyShell import main if __name__ == '__main__': diff --git a/Tools/scripts/pydoc b/Tools/scripts/pydoc3 index 0879a42..c9b83bb 100755 --- a/Tools/scripts/pydoc +++ b/Tools/scripts/pydoc3 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import pydoc if __name__ == '__main__': |