Staging
v0.5.1
https://github.com/python/cpython
Revision 2cd0b9b1ba98ae4d8e1da5adf72ffc0516325bd2 authored by Fred Drake on 29 December 1997, 16:54:11 UTC, committed by Fred Drake on 29 December 1997, 16:54:11 UTC
and ask the user for permission to set buffer-local variables depending on
the user's configuration.  Not really needed since this doesn't get edited
often.

Bumped the version number to 1.5; date still needs to be set.
1 parent f995181
Raw File
Tip revision: 2cd0b9b1ba98ae4d8e1da5adf72ffc0516325bd2 authored by Fred Drake on 29 December 1997, 16:54:11 UTC
Removed "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stop
Tip revision: 2cd0b9b
builtin.py
# B/W compat hack so code that says "import builtin" won't break after
# name change from builtin to __builtin__.
from __builtin__ import *
back to top