Author: ianb
Date: 2005-02-01 07:58:02 +0000 (Tue, 01 Feb 2005)
New Revision: 564
Modified:
trunk/SQLObject/docs/FAQ.txt
Log:
Noted what to do with Python keywords for columns
Modified: trunk/SQLObject/docs/FAQ.txt
===================================================================
--- trunk/SQLObject/docs/FAQ.txt 2005-02-01 06:45:18 UTC (rev 563)
+++ trunk/SQLObject/docs/FAQ.txt 2005-02-01 07:58:02 UTC (rev 564)
@@ -226,3 +226,12 @@
For this reason and several others, reloading modules is highly
error-prone and difficult to support.
+
+Python Keywords
+---------------
+
+If you have a table column that is a Python keyword, you should know
+that the Python attribute doesn't have to match the name of the
+column. See `Irregular Naming`_ in the documentation.
+
+.. _Irregular Naming: SQLObject.html#irregular-naming
|