Skip to content

Commit

Permalink
Merge pull request oracle#26 from jerboaa/python3.13-quote-fix-backport
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak authored Dec 5, 2024
2 parents 981e384 + 4a4b599 commit ccd6a94
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions sdk/mx.sdk/mx_sdk_shaded.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ def glob_match(path, pattern):
"""
assert isinstance(path, PurePath), path
if sys.version_info[:2] >= (3, 13):
# Since Python 3.13, PurePath.match already supports '**'.
return path.match(pattern)
# Python 3.13+: PurePath.full_match already supports '**'.
return path.full_match(pattern)

pathType = type(path)
patternParts = pathType(pattern).parts
Expand Down
4 changes: 2 additions & 2 deletions substratevm/mx.substratevm/mx_substratevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from glob import glob
from contextlib import contextmanager
from os.path import join, exists, dirname
import pipes
import shlex
from argparse import ArgumentParser
import fnmatch
import collections
Expand Down Expand Up @@ -585,7 +585,7 @@ def dummy_harness(test_deps, vm_launcher, vm_args):
unittest_image = native_image(['-ea', '-esa'] + build_args + extra_image_args + [macro_junit + '=' + unittest_file] + svm_experimental_options(['-H:Path=' + junit_test_dir]), env=custom_env)
image_pattern_replacement = unittest_image + ".exe" if mx.is_windows() else unittest_image
run_args = [arg.replace('${unittest.image}', image_pattern_replacement) for arg in run_args]
mx.log('Running: ' + ' '.join(map(pipes.quote, [unittest_image] + run_args)))
mx.log('Running: ' + ' '.join(map(shlex.quote, [unittest_image] + run_args)))
mx.run([unittest_image] + run_args)
finally:
if not preserve_image:
Expand Down
6 changes: 3 additions & 3 deletions sulong/mx.sulong/mx_sulong.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2016, 2023, Oracle and/or its affiliates.
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.
#
# All rights reserved.
#
Expand Down Expand Up @@ -29,7 +29,7 @@
#
import sys
import os
import pipes
import shlex
import tempfile
from os.path import join
import shutil
Expand Down Expand Up @@ -166,7 +166,7 @@ def get_jacoco_setting():
def _subst_get_jvm_args(dep):
java = mx.get_jdk().java
main_class = mx.distribution(dep).mainClass
jvm_args = [pipes.quote(arg) for arg in mx.get_runtime_jvm_args([dep])]
jvm_args = [shlex.quote(arg) for arg in mx.get_runtime_jvm_args([dep])]
cmd = [java] + jvm_args + [main_class]
return " ".join(cmd)

Expand Down
6 changes: 3 additions & 3 deletions sulong/mx.sulong/mx_sulong_suite_constituents.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2016, 2023, Oracle and/or its affiliates.
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.
#
# All rights reserved.
#
Expand Down Expand Up @@ -32,7 +32,7 @@

import abc
import fnmatch
import pipes
import shlex

import mx
import mx_cmake
Expand Down Expand Up @@ -418,7 +418,7 @@ def clean(self, forBuild=False):
def contents(self, tool, exe):
# platform support
all_params = '%*' if mx.is_windows() else '"$@"'
_quote = _quote_windows if mx.is_windows() else pipes.quote
_quote = _quote_windows if mx.is_windows() else shlex.quote
# build command line
java = mx.get_jdk().java
classpath_deps = [dep for dep in self.subject.buildDependencies if isinstance(dep, mx.ClasspathDependency)]
Expand Down

0 comments on commit ccd6a94

Please sign in to comment.