Changeset 6069
- Timestamp:
- 09/08/07 14:30:16 (1 year ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r6007 r6069 309 309 Note that the regex will be applied to the 310 310 base filename, not the full path. Example: 311 ``"foo.*\.txt ^"``, which will match a file called311 ``"foo.*\.txt$"``, which will match a file called 312 312 ``foo23.txt`` but not ``bar.txt`` or ``foo23.gif``. 313 313 … … 1904 1904 always return a nice, human-readable string for the object's ``__str__``. 1905 1905 Although this isn't required, it's strongly encouraged (see the description of 1906 ``__unicode__``, below, before putting ``_ str__`` methods everywhere).1906 ``__unicode__``, below, before putting ``__str__`` methods everywhere). 1907 1907 1908 1908 For example::
