mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			552 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			552 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright 2007 Google, Inc. All Rights Reserved.
 | 
						|
# Licensed to PSF under a Contributor Agreement.
 | 
						|
 | 
						|
"""Fixer that changes buffer(...) into memoryview(...)."""
 | 
						|
 | 
						|
# Local imports
 | 
						|
from . import basefix
 | 
						|
from .util import Name
 | 
						|
 | 
						|
 | 
						|
class FixBuffer(basefix.BaseFix):
 | 
						|
 | 
						|
    explicit = True # The user must ask for this fixer
 | 
						|
 | 
						|
    PATTERN = """
 | 
						|
              power< name='buffer' trailer< '(' [any] ')' > >
 | 
						|
              """
 | 
						|
 | 
						|
    def transform(self, node, results):
 | 
						|
        name = results["name"]
 | 
						|
        name.replace(Name("memoryview", prefix=name.get_prefix()))
 |