Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[GTK] Build failures when building with python 3.3
https://bugs.webkit.org/show_bug.cgi?id=106194 Reviewed by Dirk Pranke. Python 3.3 introduced changes to dictionaries which can result in changed iteration order. More about these changes: http://docs.python.org/3.3/whatsnew/3.3.html#pep-412-key-sharing-dictionary http://www.python.org/dev/peps/pep-0412/#cons This causes the Source/WebCore/inspector/generate-inspector-protocol-version script to fail the self-testing when using Python 3.3. These changes work around this problem by not checking for expected errors in order but rather for their presence in the error output sequence. The number of actual errors is also checked to be equal to the number of expected errors. No new tests - no new functionality. * inspector/generate-inspector-protocol-version: (self_test): Canonical link: https://commits.webkit.org/124537@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@139081 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information