Opened 18 years ago
Closed 18 years ago
#121 closed defect (duplicate)
interpolation problem
| Reported by: | anonymous | Owned by: | cmlenz |
|---|---|---|---|
| Priority: | major | Milestone: | 0.5 |
| Component: | Parsing | Version: | 0.4 |
| Keywords: | Cc: |
Description
>>> from genshi.template.interpolation import interpolate
>>> list(interpolate('foo$ bar $$buz'));
[('TEXT', u'foo$$buz', (None, -1, 0))]
>>> list(interpolate('foo$ bar $buz'));
[('TEXT', u'foo$ bar ', (None, -1, 0)), ('EXPR', Expression('buz'), (None, -1, 9))]
first one should be
[('TEXT', u'foo$ bar $buz', (None, -1, 0))]
right?
Change History (1)
comment:1 Changed 18 years ago by anonymous
- Resolution set to duplicate
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

duplicate of #117. sorry.