mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[utils] Don't transform numbers not starting with a zero
Fix test_Viidea and maybe others
This commit is contained in:
		| @@ -640,6 +640,9 @@ class TestUtil(unittest.TestCase): | |||||||
|             "1":{"src":"skipped", "type": "application/vnd.apple.mpegURL"} |             "1":{"src":"skipped", "type": "application/vnd.apple.mpegURL"} | ||||||
|         }''') |         }''') | ||||||
|  |  | ||||||
|  |         inp = '''{"foo":101}''' | ||||||
|  |         self.assertEqual(js_to_json(inp), '''{"foo":101}''') | ||||||
|  |  | ||||||
|     def test_js_to_json_edgecases(self): |     def test_js_to_json_edgecases(self): | ||||||
|         on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}") |         on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}") | ||||||
|         self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"}) |         self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"}) | ||||||
|   | |||||||
| @@ -1970,7 +1970,7 @@ def js_to_json(code): | |||||||
|         '(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'| |         '(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'| | ||||||
|         /\*.*?\*/|,(?=\s*[\]}])| |         /\*.*?\*/|,(?=\s*[\]}])| | ||||||
|         [a-zA-Z_][.a-zA-Z_0-9]*| |         [a-zA-Z_][.a-zA-Z_0-9]*| | ||||||
|         (?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:\s*:)?| |         \b(?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:\s*:)?| | ||||||
|         [0-9]+(?=\s*:) |         [0-9]+(?=\s*:) | ||||||
|         ''', fix_kv, code) |         ''', fix_kv, code) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan