l0n0lc 0.9.2__tar.gz → 0.9.3__tar.gz

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.4
2
2
  Name: l0n0lc
3
- Version: 0.9.2
3
+ Version: 0.9.3
4
4
  Summary: 一个将python函数翻译为c++函数并运行的jit编译器
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Requires-Python: >=3.10
@@ -559,10 +559,10 @@ class py2cpp编译器(ast.NodeVisitor):
559
559
  值 = self.获取值(node.value)
560
560
  目标类型 = self.获取值(node.annotation)
561
561
  if 目标类型 is None:
562
- self.抛出代码异常(f'不支持的类型嗯{node.annotation}', node)
562
+ self.抛出代码异常(f'不支持的类型:{node.annotation}', node)
563
563
  c类型 = py类型转c类型(目标类型)
564
564
  if c类型 is None:
565
- self.抛出代码异常(f'不支持的类型嗯{目标类型}', node)
565
+ self.抛出代码异常(f'不支持的类型:{目标类型}', node)
566
566
  self._赋值(node.target, 值, node, str(c类型))
567
567
 
568
568
  def 获取定义(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: l0n0lc
3
- Version: 0.9.2
3
+ Version: 0.9.3
4
4
  Summary: 一个将python函数翻译为c++函数并运行的jit编译器
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Requires-Python: >=3.10
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "l0n0lc"
3
- version = "0.9.2"
3
+ version = "0.9.3"
4
4
  description = "一个将python函数翻译为c++函数并运行的jit编译器"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes