mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
10 lines
373 B
Python
10 lines
373 B
Python
from MySQLdb import *
|
|
|
|
### DCR: from MySQLdb __init__.py
|
|
def Connect(*args, **kwargs):
|
|
"""Factory function for connections.Connection."""
|
|
### DCR: use DirectMySQLdbConnection to prevent memory leaks
|
|
from direct.directutil.DirectMySQLdbConnection import DirectMySQLdbConnection
|
|
return DirectMySQLdbConnection(*args, **kwargs)
|
|
|
|
connect = Connection = Connect
|