Bug 256465 - Python syntax error making Build failed on cygwin64
Summary: Python syntax error making Build failed on cygwin64
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Windows 10
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-05-08 08:05 PDT by jaybhaskar
Modified: 2023-05-11 20:20 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jaybhaskar 2023-05-08 08:05:11 PDT
Python syntax error making Build failed on cygwin64
Following errors occurs 

/Source/WebCore/css/process-css-properties.py", line 39
    def quote_iterable(iterable, *, mark='"', suffix=''):
                                  ^
SyntaxError: invalid syntax
Comment 1 Fujii Hironori 2023-05-08 13:22:25 PDT
Are you using Python 2? Do you install Python 3?
Comment 2 jaybhaskar 2023-05-09 04:10:31 PDT
I am Using python2
Comment 3 jaybhaskar 2023-05-09 18:27:59 PDT
It looks like, we have to use python3, but the script should be written such as it should work on python2 also.
Comment 4 Fujii Hironori 2023-05-09 18:41:38 PDT
Right. But, if you install python3, the build script will use it.
Comment 5 jaybhaskar 2023-05-11 07:48:34 PDT
Thanks