Staging
v0.5.1
https://github.com/python/cpython
Revision 4b9fa7373c82c3a8b9d9a7decfffc601419036cc authored by Michael W. Hudson on 25 March 2002, 12:24:24 UTC, committed by Michael W. Hudson on 25 March 2002, 12:24:24 UTC
    revision 4.8 of python-mode.el

(py-temp-directory): Add /var/tmp to the list of directories this
searches.  This is added after /tmp.  Closes SF bug #505488, except
that /var/tmp comes after /tmp instead of the patch's suggestion of
putting it before /usr/tmp.
1 parent 799699d
Raw File
Tip revision: 4b9fa7373c82c3a8b9d9a7decfffc601419036cc authored by Michael W. Hudson on 25 March 2002, 12:24:24 UTC
backport bwarsaw's checkin of
Tip revision: 4b9fa73
test_sundry.py
"""Do a minimal test of all the modules that aren't otherwise tested."""

import warnings
warnings.filterwarnings('ignore', '', DeprecationWarning, 'posixfile')

from test_support import verbose

import BaseHTTPServer
import CGIHTTPServer
import Queue
import SimpleHTTPServer
import SocketServer
import aifc
import anydbm
import audiodev
import bdb
import cmd
import code
import codeop
import colorsys
import commands
import compileall
try:
    import curses   # not available on Windows
except ImportError:
    if verbose:
        print "skipping curses"
import dircache
import dis
import distutils
import doctest
import dumbdbm
import encodings
import filecmp
import fnmatch
import formatter
import fpformat
import ftplib
import getpass
import glob
import gopherlib
import htmlentitydefs
import htmllib
import httplib
import imaplib
import imghdr
import imputil
import keyword
#import knee
import macpath
import macurl2path
import mailcap
import mhlib
import mimetypes
import mimify
import multifile
import mutex
import netrc
import nntplib
import nturl2path
import pdb
import pipes
#import poplib
import posixfile
import pre
import profile
import pstats
import py_compile
import pyclbr
#import reconvert
import repr
try:
    import rlcompleter   # not available on Windows
except ImportError:
    if verbose:
        print "skipping rlcompleter"
import robotparser
import sched
import sgmllib
import shelve
import shlex
import shutil
import smtplib
import sndhdr
import statcache
import statvfs
import stringold
import sunau
import sunaudio
import symbol
import tabnanny
import telnetlib
import test
import toaiff
#import tzparse
import urllib2
# Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
# can screw up all sorts of things (esp. if it prints!).
#import user
import webbrowser
import whichdb
import xdrlib
import xml
back to top