Commit 80c0bbb4 authored by Guido van Rossum's avatar Guido van Rossum

use std module os

parent 928f31af
# Utility module to import all modules in the path, in the hope # Utility module to import all modules in the path, in the hope
# that this will update their ".pyc" files. # that this will update their ".pyc" files.
# First, see if this is the Mac or UNIX import os
try:
import posix
os = posix
import path
except ImportError:
import mac
os = mac
import macpath
path = macpath
import sys import sys
# Sabotage 'gl' and 'stdwin' to prevent windows popping up... # Sabotage 'gl' and 'stdwin' to prevent windows popping up...
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment