summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-31 15:01:50 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-31 15:01:50 -0500
commit410898a56bee5d8dac411e806423fa63dda0d441 (patch)
treeee7db25b0367432f21d5cfcf8adaa1d2448f8511 /.gitignore
parent158dea527a00050d008e2d78ddd1ef5765b482f4 (diff)
downloadalembic-410898a56bee5d8dac411e806423fa63dda0d441.tar.gz
- The :class:`.ScriptDirectory` system that loads migration files
from a ``versions/`` directory now supports so-called "sourceless" operation, where the ``.py`` files are not present and instead ``.pyc`` or ``.pyo`` files are directly present where the ``.py`` files should be. Note that while Python 3.3 has a new system of locating ``.pyc``/``.pyo`` files within a directory called ``__pycache__`` (e.g. PEP-3147), PEP-3147 maintains support for the "source-less imports" use case, where the ``.pyc``/``.pyo`` are in present in the "old" location, e.g. next to the ``.py`` file; this is the usage that's supported even when running Python3.3. #163
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index f9e5e52..c495449 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
*.pyc
+*.pyo
build/
dist/
docs/build/output/