Lines Matching refs:args
101 def __init__(self, *args):
102 Exception.__init__(self, *args)
104 self.response = args[0]
387 def __exit__(self, *args):
1060 args = parser.parse_args()
1062 port = args.port
1063 if not args.ssl:
1066 s = NNTP(host=args.server, port=port)
1070 s = NNTP_SSL(host=args.server, port=port)
1075 resp, count, first, last, name = s.group(args.group)
1083 first = str(int(last) - args.nb_articles + 1)