aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cvs2svn_rcsparse/__init__.py')
-rw-r--r--cvs2svn_rcsparse/__init__.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/cvs2svn_rcsparse/__init__.py b/cvs2svn_rcsparse/__init__.py
deleted file mode 100644
index 829c117..0000000
--- a/cvs2svn_rcsparse/__init__.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*-python-*-
-#
-# Copyright (C) 1999-2006 The ViewCVS Group. All Rights Reserved.
-#
-# By using this file, you agree to the terms and conditions set forth in
-# the LICENSE.html file which can be found at the top level of the ViewVC
-# distribution or at http://viewvc.org/license-1.html.
-#
-# For more information, visit http://viewvc.org/
-#
-# -----------------------------------------------------------------------
-
-"""This package provides parsing tools for RCS files."""
-
-from common import *
-
-try:
- from tparse import parse
-except ImportError:
- try:
- from texttools import Parser
- except ImportError:
- from default import Parser
-
- def parse(file, sink):
- return Parser().parse(file, sink)