This website requires JavaScript.
Explore
Help
Sign In
innov
/
django1
Watch
1
Star
0
Fork
You've already forked django1
0
Code
Issues
Pull Requests
1
Projects
Releases
Wiki
Activity
193f14d862
django1
/
django
/
db
/
backends
/
signals.py
4 lines
95 B
Python
Raw
Normal View
History
Unescape
Escape
Fixed #6064 -- Added the `connection_created` signal for when a database connection is created. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10182 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-30 07:15:58 +08:00
from
django
.
dispatch
import
Signal
Fixed #13798 -- Added connection argument to the connection_created signal. Thanks to liangent for the report, and Alex Gaynor for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13672 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-30 21:21:18 +08:00
connection_created
=
Signal
(
providing_args
=
[
"
connection
"
]
)