Re: [Pyunit-interest] Re: PATCH: AssertionError message
Brought to you by:
purcell
From: Steve P. <ste...@ya...> - 2002-06-04 12:44:45
|
Phlip wrote: > Sorry, but do back-ticks do the same as repr? I thought they did string. Back-ticks are 'repr' in disguise, not 'str': Python 2.1.3 (#1, Apr 20 2002, 10:14:34) [GCC 2.95.4 20011002 (Debian prerelease)] on linux2 Type "copyright", "credits" or "license" for more information. >>> print `"hello"` 'hello' >>> print str("hello") hello >>> -Steve -- Steve Purcell, Pythangelist Get testing at http://pyunit.sourceforge.net/ |