home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / rsa / report.py < prev    next >
Text File  |  1992-12-09  |  244b  |  20 lines

  1. import sys
  2.  
  3. def report(args):
  4.     pass
  5.  
  6. def reportnl(args):
  7.     pass
  8.  
  9. ##def report(args):
  10. ##    if type(args) == type(()):
  11. ##        for i in args:
  12. ##            print i,
  13. ##    else:
  14. ##        print args,
  15. ##    sys.stdout.flush()
  16. ##
  17. ##def reportnl(args):
  18. ##    report(args)
  19. ##    print
  20.