rpc-language 3.0__tar.gz → 3.1__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,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rpc-language
3
- Version: 3.0
3
+ Version: 3.1
4
4
  Requires-Dist: pyinstaller
5
5
  Dynamic: requires-dist
@@ -3,12 +3,12 @@ import shutil
3
3
  import time
4
4
  import sys
5
5
  import os
6
- import re
7
6
 
8
7
  class RPC:
9
8
  class NeedSemicolon(Exception):
10
9
  def __init__(self, message):
11
10
  super().__init__(message)
11
+
12
12
  class MismatchedQuotationMarks(Exception):
13
13
  def __init__(self, message):
14
14
  super().__init__(message)
@@ -64,7 +64,7 @@ def parse(line):
64
64
 
65
65
  else:
66
66
  try:
67
- int(line[5])
67
+ int(line[5:-1].rstrip())
68
68
  ok = True
69
69
  except:
70
70
  ok = False
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rpc-language
3
- Version: 3.0
3
+ Version: 3.1
4
4
  Requires-Dist: pyinstaller
5
5
  Dynamic: requires-dist
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name="rpc-language",
5
- version="3.0",
5
+ version="3.1",
6
6
  py_modules=["rpc"],
7
7
  install_requires=["pyinstaller"],
8
8
  entry_points={
File without changes