diff options
author | Brett Cannon <brett@python.org> | 2013-07-12 15:04:23 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-07-12 15:04:23 (GMT) |
commit | f0cb69274c735ae5d178acf4bfe7e314b046eb57 (patch) | |
tree | 2f07c58d00e9634a1d06d687f420c198d0471687 /Python | |
parent | d917dcbe5e855ae30eca455d38bec2bf6354dbdf (diff) | |
download | cpython-f0cb69274c735ae5d178acf4bfe7e314b046eb57.zip cpython-f0cb69274c735ae5d178acf4bfe7e314b046eb57.tar.gz cpython-f0cb69274c735ae5d178acf4bfe7e314b046eb57.tar.bz2 |
Issue #18415: Normalize what type of quotes are used with string
constants in importlib._bootstrap. Along the way clean up from string
interpolation to use the repr explicitly.
Initial patch by Madison May.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/importlib.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Python/importlib.h b/Python/importlib.h index c06513c..51aae7e 100644 --- a/Python/importlib.h +++ b/Python/importlib.h @@ -1434,8 +1434,8 @@ const unsigned char _Py_M__importlib[] = { 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, 0,67,0,0,0,115,16,0,0,0,100,1,0,106,0,0, 124,1,0,106,1,0,131,1,0,83,40,2,0,0,0,78, - 117,24,0,0,0,60,109,111,100,117,108,101,32,39,123,125, - 39,32,40,98,117,105,108,116,45,105,110,41,62,40,2,0, + 117,24,0,0,0,60,109,111,100,117,108,101,32,123,33,114, + 125,32,40,98,117,105,108,116,45,105,110,41,62,40,2,0, 0,0,114,46,0,0,0,114,56,0,0,0,40,2,0,0, 0,244,3,0,0,0,99,108,115,114,161,0,0,0,114,4, 0,0,0,114,4,0,0,0,114,5,0,0,0,244,11,0, @@ -1546,8 +1546,8 @@ const unsigned char _Py_M__importlib[] = { 32,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, 0,0,67,0,0,0,115,16,0,0,0,100,1,0,106,0, 0,124,1,0,106,1,0,131,1,0,83,40,2,0,0,0, - 78,117,22,0,0,0,60,109,111,100,117,108,101,32,39,123, - 125,39,32,40,102,114,111,122,101,110,41,62,40,2,0,0, + 78,117,22,0,0,0,60,109,111,100,117,108,101,32,123,33, + 114,125,32,40,102,114,111,122,101,110,41,62,40,2,0,0, 0,114,46,0,0,0,114,56,0,0,0,40,2,0,0,0, 114,215,0,0,0,244,1,0,0,0,109,114,4,0,0,0, 114,4,0,0,0,114,5,0,0,0,114,216,0,0,0,31, @@ -2565,8 +2565,8 @@ const unsigned char _Py_M__importlib[] = { 95,95,99,2,0,0,0,0,0,0,0,2,0,0,0,2, 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, 0,0,124,1,0,106,1,0,131,1,0,83,40,2,0,0, - 0,78,117,25,0,0,0,60,109,111,100,117,108,101,32,39, - 123,125,39,32,40,110,97,109,101,115,112,97,99,101,41,62, + 0,78,117,25,0,0,0,60,109,111,100,117,108,101,32,123, + 33,114,125,32,40,110,97,109,101,115,112,97,99,101,41,62, 40,2,0,0,0,114,46,0,0,0,114,56,0,0,0,40, 2,0,0,0,114,215,0,0,0,114,161,0,0,0,114,4, 0,0,0,114,4,0,0,0,114,5,0,0,0,114,216,0, |