Staging
v0.5.1
https://github.com/python/cpython
Revision 5566c1ce36138bb3e91e0dac4d6694cfbb68f206 authored by Fred Drake on 19 January 2001, 22:48:33 UTC, committed by Fred Drake on 19 January 2001, 22:48:33 UTC
1 parent 0fe5af9
Raw File
Tip revision: 5566c1ce36138bb3e91e0dac4d6694cfbb68f206 authored by Fred Drake on 19 January 2001, 22:48:33 UTC
Fixed a bunch of typos caught by Gilles Civario.
Tip revision: 5566c1c
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