[sqlalchemy] Re: Trying to detect which class methods were added by the mapper.

2007-06-13 Thread sdobrev

are u using assign_mapper? 
use plain mappers to have minimal impact, u will still get plenty of 
new descriptors + __init__ replaced

On Wednesday 13 June 2007 07:35:16 Ian Charnas wrote:
 Inspired by the SQLAlchemy docs, I'm writing a documentation
 generator in python using a combination of epydoc (for
 parsing/introspection), genshi (templates), docutils (for
 restructured text), and pygments (syntax highlighting).. and I just
 noticed that the documentation for classes mapped by SQLAlchemy
 always includes the methods like select, count, get_by, etc
 that were added by the mapper.  This is very undesirable, and I'm
 looking for a way to detect which methods were added to the class
 by the SQLAlchemy mapper, and which methods were there to begin
 with.

 Does anyone have any ideas?  I was hoping there would be something
 like Animal.select.mapper or Animal.select._sqlalchemy that I
 could use to differentiate which methods were added by the mapper
 and which were there originally, but I can't seem to find any such
 thing.

 many thanks in advance,
 -Ian Charnas from the Pagoda CMS team, www.pagodacms.org

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Trying to detect which class methods were added by the mapper.

2007-06-13 Thread Michael Bayer


On Jun 13, 2007, at 12:35 AM, Ian Charnas wrote:


 Inspired by the SQLAlchemy docs, I'm writing a documentation generator
 in python using a combination of epydoc (for parsing/introspection),
 genshi (templates), docutils (for restructured text), and pygments
 (syntax highlighting).. and I just noticed that the documentation for
 classes mapped by SQLAlchemy always includes the methods like
 select, count, get_by, etc that were added by the mapper.  This
 is very undesirable, and I'm looking for a way to detect which methods
 were added to the class by the SQLAlchemy mapper, and which methods
 were there to begin with.

 Does anyone have any ideas?  I was hoping there would be something
 like Animal.select.mapper or Animal.select._sqlalchemy that I
 could use to differentiate which methods were added by the mapper and
 which were there originally, but I can't seem to find any such thing.


SQLAlchemy does not add methods to classes, the assignmapper  
extension does.  dont use the assign_mapper extension.




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---