mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
Merge pull request #4309 from hugovk/fix-string-concatenation
Fix string concatenation
This commit is contained in:
commit
cceef75d33
|
@ -377,7 +377,7 @@ class TestLibUnpack(PillowTestCase):
|
|||
self.assert_unpack(
|
||||
"RGBA",
|
||||
"RGBa;16L",
|
||||
b"\x88\x01\x88\x02\x88\x03\x88\x00" b"\x88\x10\x88\x20\x88\x30\x88\xff",
|
||||
b"\x88\x01\x88\x02\x88\x03\x88\x00\x88\x10\x88\x20\x88\x30\x88\xff",
|
||||
(0, 0, 0, 0),
|
||||
(16, 32, 48, 255),
|
||||
)
|
||||
|
@ -392,7 +392,7 @@ class TestLibUnpack(PillowTestCase):
|
|||
self.assert_unpack(
|
||||
"RGBA",
|
||||
"RGBa;16B",
|
||||
b"\x01\x88\x02\x88\x03\x88\x00\x88" b"\x10\x88\x20\x88\x30\x88\xff\x88",
|
||||
b"\x01\x88\x02\x88\x03\x88\x00\x88\x10\x88\x20\x88\x30\x88\xff\x88",
|
||||
(0, 0, 0, 0),
|
||||
(16, 32, 48, 255),
|
||||
)
|
||||
|
|
|
@ -225,8 +225,8 @@ set DefaultPlatformToolset=v100
|
|||
if bit == 64:
|
||||
script += (
|
||||
r"copy /Y /B "
|
||||
+ r'"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib\x64\*.Lib" '
|
||||
+ r"%%FREETYPE%%\builds\windows\vc2010"
|
||||
r'"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib\x64\*.Lib" '
|
||||
r"%%FREETYPE%%\builds\windows\vc2010"
|
||||
)
|
||||
properties += r" /p:_IsNativeEnvironment=false"
|
||||
script += (
|
||||
|
|
Loading…
Reference in New Issue
Block a user