diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-01-17 17:57:56 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-01-17 17:57:56 +0000 |
commit | e1b22962e5672f67ca77806b1a8abfc49b661615 (patch) | |
tree | 8bdedb9ff84978d7315a4618e2556554a3fde7f4 | |
parent | 4a22734eb1d8dd8f18104747eed8f6f909c36740 (diff) | |
download | sqlalchemy-e1b22962e5672f67ca77806b1a8abfc49b661615.tar.gz |
clarify shallow copy
-rw-r--r-- | lib/sqlalchemy/databases/postgres.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py index cc963a6fd..2ec820c73 100644 --- a/lib/sqlalchemy/databases/postgres.py +++ b/lib/sqlalchemy/databases/postgres.py @@ -233,7 +233,7 @@ class PGArray(sqltypes.MutableType, sqltypes.Concatenable, sqltypes.TypeEngine): multi-dimensional arrays like `INTEGER[][]`, are constructed as `PGArray(Integer)`, not as `PGArray(PGArray(Integer))` or such. The type mapping figures out on the fly :param mutable: Defaults to True: specify whether lists passed to this class should be considered mutable. - If so, then they are shallow-copied. + If so, generic copy operations (typically used by the ORM) will shallow-copy values. """ if isinstance(item_type, type): item_type = item_type() |