mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Oops, checked in the wrong file
This commit is contained in:
parent
88048bf3da
commit
66f4964c8b
@ -13,10 +13,7 @@ class DirectMySQLdbConnection(Connection):
|
|||||||
|
|
||||||
kwargs2 = kwargs.copy()
|
kwargs2 = kwargs.copy()
|
||||||
|
|
||||||
if kwargs.has_key('conv'):
|
conv = kwargs.get('conv', conversions)
|
||||||
conv = kwargs['conv']
|
|
||||||
else:
|
|
||||||
conv = conversions
|
|
||||||
|
|
||||||
kwargs2['conv'] = dict([ (k, v) for k, v in conv.items()
|
kwargs2['conv'] = dict([ (k, v) for k, v in conv.items()
|
||||||
if type(k) is int ])
|
if type(k) is int ])
|
||||||
|
@ -61,7 +61,10 @@ import bisect
|
|||||||
__report_indent = 3
|
__report_indent = 3
|
||||||
|
|
||||||
from direct.directutil import Verify
|
from direct.directutil import Verify
|
||||||
from panda3d.core import ConfigVariableBool
|
# Don't import libpandaexpressModules, which doesn't get built until
|
||||||
|
# genPyCode.
|
||||||
|
import direct.extensions_native.extension_native_helpers
|
||||||
|
from libpandaexpress import ConfigVariableBool
|
||||||
|
|
||||||
ScalarTypes = (types.FloatType, types.IntType, types.LongType)
|
ScalarTypes = (types.FloatType, types.IntType, types.LongType)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user