self, item: Union[Index, UniqueConstraint]
) -> Tuple[Any, ...]:
# only the positive case is returned by sqlalchemy reflection so
- # None and False are threated the same
+ # None and False are treated the same
if item.dialect_kwargs.get("postgresql_nulls_not_distinct"):
return ("nulls_not_distinct",)
return ()
===========
Alembic's internal API has many public integration points that can be used
-to extend Alembic's functionality as well as to re-use its functionality
+to extend Alembic's functionality as well as to reuse its functionality
in new ways. As the project has grown, more APIs are created and exposed
for this purpose.
:tickets: 1261
Fixed format string logged when running a post write hook
- Pull request curtesy of Mathieu Défosse.
+ Pull request courtesy of Mathieu Défosse.
.. change::
:tags: feature, operations
The command line runner has been organized
into a reusable CommandLine object, so that other
- front-ends can re-use the argument parsing built
+ front-ends can reuse the argument parsing built
in.
.. change::
def test_programmatic_command_option(self):
def process_revision_directives(context, rev, generate_revisions):
- generate_revisions[0].message = "test programatic"
+ generate_revisions[0].message = "test programmatic"
generate_revisions[0].upgrade_ops = ops.UpgradeOps(
ops=[
ops.CreateTableOp(
sections for nox tests, which include tags that indicate various combinations
of those parameters in such a way that it's somewhat similar to how
we were using the tox project; where individual dash-separated tags could
-be added to add more specificity to the suite configuation, or omitting them
+be added to add more specificity to the suite configuration, or omitting them
would fall back to defaults.