diff options
| author | Jason Kirtland <jek@discorporate.us> | 2008-05-21 20:34:59 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2008-05-21 20:34:59 +0000 |
| commit | 07a3b8520b4f1c85e00a5bd963bb4f2a827131de (patch) | |
| tree | 375d1c9bec5f39403e9f2062ce31e52d6fe340f8 /lib/sqlalchemy/orm | |
| parent | afb2ca13a3cb7f34bd66f62e1c007123b7ce2ed1 (diff) | |
| download | sqlalchemy-07a3b8520b4f1c85e00a5bd963bb4f2a827131de.tar.gz | |
Updated fixmes.
Diffstat (limited to 'lib/sqlalchemy/orm')
| -rw-r--r-- | lib/sqlalchemy/orm/collections.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/orm/collections.py b/lib/sqlalchemy/orm/collections.py index 13204e8c1..0e2764123 100644 --- a/lib/sqlalchemy/orm/collections.py +++ b/lib/sqlalchemy/orm/collections.py @@ -715,9 +715,10 @@ def __converting_factory(original_factory): def _instrument_class(cls): """Modify methods in a class and install instrumentation.""" - # FIXME: more formally document this as a decoratorless/Python 2.3 + + # TODO: more formally document this as a decoratorless/Python 2.3 # option for specifying instrumentation. (likely doc'd here in code only, - # not in online docs.) + # not in online docs.) Useful for C types too. # # __instrumentation__ = { # 'rolename': 'methodname', # ... @@ -904,8 +905,7 @@ def _list_decorators(): def append(fn): def append(self, item, _sa_initiator=None): - # FIXME: example of fully inlining __set and adapter.fire - # for critical path + # fully inlining __set and adapter.fire for this critical path if _sa_initiator is not False and item is not None: executor = getattr(self, '_sa_adapter', None) if executor: |
