source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/dal/pydal/_load.py

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 396 bytes
Line 
1# -*- coding: utf-8 -*-
2# load modules with contrib fallback
3
4try:
5    from collections import OrderedDict
6except:
7    from .contrib.ordereddict import OrderedDict
8
9from .contrib import portalocker
10
11# TODO: uncomment the lines below when contrib/portalocker will be
12# inline with the one shipped with pip
13# try:
14#    import portalocker
15# except ImportError:
16#    from .contrib import portalocker
Note: See TracBrowser for help on using the repository browser.