7 lines
144 B
Python
7 lines
144 B
Python
|
|
|
||
|
|
from single import db_singleton
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
print(id(db_singleton))
|
||
|
|
print(id(db_singleton))
|
||
|
|
print(id(db_singleton))
|