File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed 
@tests/stubtest_allowlists Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,6 @@ encodings.win32_code_page_search_function
2222nt.readinto
2323pathlib.Path.group
2424pathlib.Path.owner
25- winsound.MB_ICONERROR
26- winsound.MB_ICONINFORMATION
27- winsound.MB_ICONSTOP
28- winsound.MB_ICONWARNING
29- winsound.SND_SENTRY
30- winsound.SND_SYNC
31- winsound.SND_SYSTEM
3225zlib.ZLIBNG_VERSION
3326
3427
Original file line number Diff line number Diff line change @@ -13,12 +13,22 @@ if sys.platform == "win32":
1313    SND_NODEFAULT : Final  =  2 
1414    SND_NOSTOP : Final  =  16 
1515    SND_NOWAIT : Final  =  8192 
16+     if  sys .version_info  >=  (3 , 14 ):
17+         SND_SENTRY : Final  =  524288 
18+         SND_SYNC : Final  =  0 
19+         SND_SYSTEM : Final  =  2097152 
1620
1721    MB_ICONASTERISK : Final  =  64 
1822    MB_ICONEXCLAMATION : Final  =  48 
1923    MB_ICONHAND : Final  =  16 
2024    MB_ICONQUESTION : Final  =  32 
2125    MB_OK : Final  =  0 
26+     if  sys .version_info  >=  (3 , 14 ):
27+         MB_ICONERROR : Final  =  16 
28+         MB_ICONINFORMATION : Final  =  64 
29+         MB_ICONSTOP : Final  =  16 
30+         MB_ICONWARNING : Final  =  48 
31+ 
2232    def  Beep (frequency : int , duration : int ) ->  None : ...
2333    # Can actually accept anything ORed with 4, and if not it's definitely str, but that's inexpressible 
2434    @overload  
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments