~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-28 16:28:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1979.
  • Revision ID: john@arbash-meinel.com-20060828162810-74ae198f053d2a4b
Move the _revno_regex to a more logical location

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
# classes in this list should have a "prefix" attribute, against which
95
95
# string specs are matched
96
96
SPEC_TYPES = []
 
97
_revno_regex = None
97
98
 
98
99
 
99
100
class RevisionSpec(object):
224
225
        return True
225
226
 
226
227
 
227
 
_revno_regex = None
228
 
 
229
228
# private API
230
229
 
231
 
 
232
230
class RevisionSpec_revno(RevisionSpec):
233
231
    prefix = 'revno:'
234
232