1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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
This commit is contained in:
Justin Bronn
2009-03-29 23:15:58 +00:00
parent c0ee4c5cac
commit da3b38cdda
7 changed files with 35 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
from django.dispatch import Signal
connection_created = Signal()
from django.dispatch import Signal
connection_created = Signal()