openrewrite-remote 0.2.3__py3-none-any.whl → 0.2.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openrewrite-remote
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Remoting functionality for the OpenRewrite library.
5
5
  License: Apache-2.0
6
6
  Author: Moderne Inc.
@@ -12,7 +12,7 @@ rewrite/remote/remote_utils.py,sha256=wZhsDEV3qnayy3M98r6M-NMxGeowQ1qW7rFSJR0cY2
12
12
  rewrite/remote/remoting.py,sha256=2bRgHNo7iCJkb_ywFhSvp3aJSSJjMfrtnrFsSV7_DoM,12988
13
13
  rewrite/remote/sender.py,sha256=RcjXdCkhv5qEZalTulLr8_HjSpLY5HSIkPQosS2SHL0,18112
14
14
  rewrite/remote/server.py,sha256=aZxyoVOPAkoa49Kw72TQzs3Iy6fArdxPAXdBl6sWfCA,7516
15
- rewrite/remote/type_utils.py,sha256=lBpwGPm4EpkKH15FE3ueDty4CR6A8R46AbTQTZtnSlU,2698
16
- openrewrite_remote-0.2.3.dist-info/METADATA,sha256=-uoTfJbZawv2nd2uJbQC2K1cwgNMWyY3RHIE4aJ5V4w,599
17
- openrewrite_remote-0.2.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
18
- openrewrite_remote-0.2.3.dist-info/RECORD,,
15
+ rewrite/remote/type_utils.py,sha256=AA6hro4natBCDso6oFHPfIipdYCdAIq9_41H5JtSF3E,2821
16
+ openrewrite_remote-0.2.4.dist-info/METADATA,sha256=TpLc7DmebFBbPZX2t3F1hm5Kr8m2whhiivJtBMmciMo,599
17
+ openrewrite_remote-0.2.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
18
+ openrewrite_remote-0.2.4.dist-info/RECORD,,
@@ -41,6 +41,8 @@ def to_java_type_name(t: typing.Type) -> str:
41
41
  return 'org.openrewrite.python.tree.PyRightPadded'
42
42
  if t.__name__ == 'PyContainer':
43
43
  return 'org.openrewrite.python.tree.PyContainer'
44
+ if t.__module__.startswith('rewrite.python.markers'):
45
+ return 'org.openrewrite.python.marker.' + t.__qualname__
44
46
  if t.__module__.startswith('rewrite.python.tree'):
45
47
  return 'org.openrewrite.python.tree.Py$' + t.__qualname__.replace('.', '$')
46
48
  if t.__module__.startswith('rewrite.marker'):