source: vendor/python/2.5/Doc/tools/findmodrefs@ 3225

Last change on this file since 3225 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 1.8 KB
Line 
1#! /usr/bin/env python
2# -*- Python -*-
3
4import fileinput
5import getopt
6import glob
7import os
8import re
9import sys
10
11
12declare_rx = re.compile(
13 r"\\declaremodule(?:\[[a-zA-Z0-9]*\]*)?{[a-zA-Z_0-9]+}{([a-zA-Z_0-9]+)}")