A semantic search engine for source code https://bitshift.benkurtovic.com/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

19 行
325 B

  1. """
  2. Module with classes and functions to handle communication with the MySQL
  3. database backend, which manages the search index.
  4. """
  5. import oursql
  6. class Database(object):
  7. """Represents the MySQL database."""
  8. def __init__(self):
  9. pass
  10. def _connect(self):
  11. pass
  12. def _create(self):
  13. pass