Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame] | 1 | # -*- perl -*- |
| 2 | # |
| 3 | # This implements the Python manual class. All it really needs to do it |
| 4 | # load the "python" style. The style code is not moved into the class code |
| 5 | # at this time, since we expect additional document class to be developed |
| 6 | # for the Python documentation in the future. Appropriate relocations will |
| 7 | # be made at that time. |
| 8 | |
| 9 | package main; |
| 10 | |
Fred Drake | 986c100 | 1998-03-03 22:27:28 +0000 | [diff] [blame] | 11 | $mydir = `pwd`; |
| 12 | chop $mydir; |
| 13 | unshift(@INC, $mydir); |
| 14 | |
Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame] | 15 | require "python.perl"; |
| 16 | |
| 17 | 1; # sheesh.... |