summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_unicode_ddl.py
Commit message (Collapse)AuthorAgeFilesLines
* inline mypy config; files ignoring type errors for the momentMike Bayer2022-04-281-2/+2
| | | | | | | | | | | | | | | | | | | to simplify pyproject.toml change the remaining files that aren't going to be typed on this first pass (unless of course someone wants to type some of these) to include # mypy: ignore-errors. for the moment, only a handful of ORM modules are to have more type checking implemented. It's important that ignore-errors is used and not "# type: ignore", as in the latter case, mypy doesn't even read the existing types in the file, which makes it impossible to type any files that refer to those modules at all. to simplify ongoing typing work use inline mypy config for remaining files that are "done" for now, indicating the level of type checking they currently have. Change-Id: I98669c1a305c2f0adba85d10b5425541f3fe9533
* Clean up most py3k compatFederico Caselli2021-11-241-65/+55
| | | | Change-Id: I8172fdcc3103ff92aa049827728484c8779af6b7
* First round of removal of python 2Federico Caselli2021-11-011-22/+9
| | | | | References: #4600 Change-Id: I61e35bc93fe95610ae75b31c18a3282558cd4ffe
* Modernize tests - legacy_selectGord Thompson2021-07-211-3/+3
| | | | Change-Id: I04057cc3d3f93de60b02999803e2ba6a23cdf68d
* tutorial 2.0 WIPreview/mike_bayer/tutorial20Mike Bayer2020-10-311-2/+2
| | | | | | | | | | | | | | Add SelectBase.exists() method as it seems strange this is not available already. The Exists construct itself does not provide full SELECT-building capabilities so it makes sense this should be used more like a scalar_subquery. Make sure stream_results is getting set up when yield_per is used, for 2.0 style statements as well. this was hardcoded inside of Query.yield_per() and is now moved to take place within QueryContext. Change-Id: Icafcd4fd9b708772343d56edf40995c9e8f835d6
* Update test_unicode and move to test suiteGord Thompson2020-02-221-0/+206
External dialects will definitely want to be able to test their handling of Unicode table/column names. Change-Id: If1b67cf170dc9e4a42e3f51760ced8ddb7a34fcf