Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Module *pysqllike*. 

5Parses :epkg:`Python` and produces equivalent 

6code in other languages in a map reduce logic. 

7""" 

8 

9__version__ = "0.1.255" 

10__author__ = "Xavier Dupré" 

11__github__ = "https://github.com/sdpython/pysqllike" 

12__url__ = "http://www.xavierdupre.fr/app/pysqllike/helpsphinx/index.html" 

13__license__ = "MIT License" 

14 

15 

16def _setup_hook(): 

17 """ 

18 does nothing 

19 """ 

20 pass 

21 

22 

23def check(log=False): 

24 """ 

25 Checks the library is working. 

26 It raises an exception. 

27 If you want to disable the logs: 

28 

29 @param log if True, display information, otherwise 

30 @return 0 or exception 

31 """ 

32 return True