File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed 
django-stubs/db/backends/sqlite3 Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
2626    introspection_class : Type [DatabaseIntrospection ]
2727    ops_class : Type [DatabaseOperations ]
2828
29+     def  is_in_memory_db (self ) ->  bool : ...
30+ 
2931FORMAT_QMARK_REGEX : Any 
3032
3133class  SQLiteCursorWrapper (Database .Cursor ): ...
Original file line number Diff line number Diff line change 1+ from  os  import  PathLike 
2+ from  typing  import  Union 
3+ 
14from  django .db .backends .base .creation  import  BaseDatabaseCreation 
25from  django .db .backends .sqlite3 .base  import  DatabaseWrapper 
36
47class  DatabaseCreation (BaseDatabaseCreation ):
58    connection : DatabaseWrapper 
9+ 
10+     @staticmethod  
11+     def  is_in_memory_db (database_name : Union [str , PathLike [str ]]) ->  bool : ...
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments