~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-10 07:12:32 UTC
  • mfrom: (2687.2.2 rename-0.19)
  • Revision ID: pqm@pqm.ubuntu.com-20070810071232-0ndzwbob5juuzaus
(mbp) rename 0.19 release to 0.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
500
500
def is_null(revision_id):
501
501
    if revision_id is None:
502
502
        symbol_versioning.warn('NULL_REVISION should be used for the null'
503
 
            ' revision instead of None, as of bzr 0.19.',
 
503
            ' revision instead of None, as of bzr 0.90.',
504
504
            DeprecationWarning, stacklevel=2)
505
505
    return revision_id in (None, NULL_REVISION)