Changeset 1032

Show
Ignore:
Timestamp:
09/02/07 18:55:41 (15 months ago)
Author:
wichert
Message:

Use absolute imports instead of relavite ones

Location:
trunk/pyrad
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/pyrad/client.py

    r1008 r1032  
    88 
    99import md5, select, socket, time 
    10 import host, packet 
     10from pyrad import host 
     11from pyrad import packet 
    1112 
    1213class Timeout(Exception): 
  • trunk/pyrad/curved.py

    r1008 r1032  
    1313import sys 
    1414 
    15 import dictionary, host, packet 
     15from pyrad import dictionary 
     16from pyrad import host 
     17from pyrad import packet 
    1618 
    1719class PacketError(Exception): 
  • trunk/pyrad/dictionary.py

    r1023 r1032  
    4343__docformat__   = "epytext en" 
    4444 
    45 import bidict, tools 
     45from pyrad import bidict 
     46from pyrad import tools 
     47 
    4648 
    4749class ParseError(Exception): 
  • trunk/pyrad/host.py

    r1008 r1032  
    33# Copyright 2003 Wichert Akkerman <wichert@wiggy.net> 
    44 
    5 import packet 
     5from pyrad import packet 
    66 
    77class Host: 
  • trunk/pyrad/packet.py

    r1008 r1032  
    1313 
    1414import md5, struct, types, random, UserDict 
    15 import tools 
     15from pyrad import tools 
    1616 
    1717# Packet codes 
  • trunk/pyrad/server.py

    r1008 r1032  
    77 
    88import select, socket 
    9 import host, packet 
     9from pyrad import host 
     10from pyrad import packet 
    1011 
    1112class RemoteHost: