~pythonregexp2.7/python/issue2636-01

« back to all changes in this revision

Viewing changes to Tools/msi/msilib.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:37:21 UTC
  • mfrom: (39022.1.14 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609143721-bj0g1mwta28038da
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
                 [(self.component+"c", self.component, "*.pyc", self.logical, 2),
572
572
                  (self.component+"o", self.component, "*.pyo", self.logical, 2)])
573
573
 
 
574
    def removefile(self, key, pattern):
 
575
        "Add a RemoveFile entry"
 
576
        add_data(self.db, "RemoveFile", [(self.component+key, self.component, pattern, self.logical, 2)])
 
577
 
 
578
 
574
579
class Feature:
575
580
    def __init__(self, db, id, title, desc, display, level = 1,
576
581
                 parent=None, directory = None, attributes=0):