]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
doc fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 10 Aug 2022 16:40:17 +0000 (12:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 10 Aug 2022 16:55:19 +0000 (12:55 -0400)
commitc4b7f1f7c9745a72f22886e6ca487f3c631a20f5
tree792d806bdc73373d806db9c1855350199fced611
parent7e442cd0a9341ac828b4c4820818ad80ad9200fa
doc fixes

* fixed erroneous use of mapped_column() in m2m relationship Table
* Fill in full imports for some relationship examples that had
  partial imports; examples that have no imports, leave empty for now
* converted joined/single inh mappings to annotated style
* We have a problem with @declared_attr in that the error message
  is wrong if the mapped_column() returned doesnt have a type, and/or
  mapped_column() with @declared_attr doesnt use the annotation
* fix thing where sphinx with undoc-members global setting seems to
  no longer tolerate ":attribute:" entries in autodoc classes, which
  is fine we can document the annotations now
* Fix mapper params in inheritance to be on Mapper
* add missing changelog file for instances remove

Change-Id: I9b70b25a320d8122fade68bc4d1f82f8b72b26f3
doc/build/changelog/unreleased_20/other_deprecations.rst [new file with mode: 0644]
doc/build/orm/basic_relationships.rst
doc/build/orm/inheritance.rst
doc/build/orm/internals.rst
doc/build/orm/relationship_persistence.rst
doc/build/orm/session_api.rst
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/session.py