~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/textinv.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-05-08 07:05:00 UTC
  • mfrom: (3376.2.15 no-asserts)
  • Revision ID: pqm@pqm.ubuntu.com-20080508070500-9zyyvsk0eev20t4w
(mbp) remove and disallow assert statements

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
 
38
38
def unescape(s):
39
 
    assert s.find(' ') == -1
 
39
    if s.find(' ') != -1:
 
40
        raise AssertionError()
40
41
    s = (s.replace(r'\x20', ' ')
41
42
         .replace(r'\x09', '\t')
42
43
         .replace(r'\x0a', '\n')