mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	pylibfdt: Fix "invalid escape sequence '\w'" in setup.py
Once u-boot's build system invokes
python3 scripts/dtc/pylibfdt/setup.py --quiet build_ext --inplace
it may fail with
scripts/dtc/pylibfdt/setup.py:40: SyntaxWarning: invalid escape sequence '\w'
  RE_KEY_VALUE = re.compile('(?P<key>\w+) *(?P<plus>[+])?= *(?P<value>.*)$')
depending on the used Python version.
Explicitly mark the regex string as raw string to avoid the warning.
Signed-off-by: Florian Schmaus <flo@geekplace.eu>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
			
			
This commit is contained in:
		
				
					committed by
					
						 Tom Rini
						Tom Rini
					
				
			
			
				
	
			
			
			
						parent
						
							72703c7a0d
						
					
				
				
					commit
					d4c84d7062
				
			| @@ -37,7 +37,7 @@ with open(os.path.join(srcdir, "../README"), "r") as fh: | ||||
|     long_description = fh.read() | ||||
|  | ||||
| # Decodes a Makefile assignment line into key and value (and plus for +=) | ||||
| RE_KEY_VALUE = re.compile('(?P<key>\w+) *(?P<plus>[+])?= *(?P<value>.*)$') | ||||
| RE_KEY_VALUE = re.compile(r'(?P<key>\w+) *(?P<plus>[+])?= *(?P<value>.*)$') | ||||
|  | ||||
| def get_top_builddir(): | ||||
|     if '--top-builddir' in sys.argv: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user