@@ -168,7 +168,6 @@ def setup_once():
168168
169169 old_app = WSGIHandler .__call__
170170
171- @functools .wraps (old_app )
172171 @ensure_integration_enabled (DjangoIntegration , old_app )
173172 def sentry_patched_wsgi_handler (self , environ , start_response ):
174173 # type: (Any, Dict[str, str], Callable[..., Any]) -> _ScopedResponse
@@ -640,7 +639,6 @@ def install_sql_hook():
640639 # This won't work on Django versions < 1.6
641640 return
642641
643- @functools .wraps (real_execute )
644642 @ensure_integration_enabled (DjangoIntegration , real_execute )
645643 def execute (self , sql , params = None ):
646644 # type: (CursorWrapper, Any, Optional[Any]) -> Any
@@ -660,7 +658,6 @@ def execute(self, sql, params=None):
660658
661659 return result
662660
663- @functools .wraps (real_executemany )
664661 @ensure_integration_enabled (DjangoIntegration , real_executemany )
665662 def executemany (self , sql , param_list ):
666663 # type: (CursorWrapper, Any, List[Any]) -> Any
@@ -681,7 +678,6 @@ def executemany(self, sql, param_list):
681678
682679 return result
683680
684- @functools .wraps (real_connect )
685681 @ensure_integration_enabled (DjangoIntegration , real_connect )
686682 def connect (self ):
687683 # type: (BaseDatabaseWrapper) -> None
0 commit comments