3 Commits 1ad27606e2 ... caad266351

Author SHA1 Message Date
  Michael Buesch caad266351 gui: Add missing symtab module imports 5 years ago
  Michael Buesch 754975d489 manifest: Add PILC.md 5 years ago
  Michael Buesch 7025c1da58 Fix Cython compile on Win 5 years ago
3 changed files with 4 additions and 0 deletions
  1. 2 0
      MANIFEST.in
  2. 1 0
      awlsim/coreserver/server.py
  3. 1 0
      awlsim/gui/util.py

+ 2 - 0
MANIFEST.in

@@ -19,6 +19,8 @@ include COMPATIBILITY.md
 include COPYING.txt
 include DEVELOPMENT.html
 include DEVELOPMENT.md
+include PILC.html
+include PILC.md
 include QUICK-START.html
 include QUICK-START.md
 include README.html

+ 1 - 0
awlsim/coreserver/server.py

@@ -520,6 +520,7 @@ class AwlSimServer(object): #+cdef
 			self.__gcTriggerCounter = trig
 
 		if self.__rtSchedEnabled:
+#			pass				#@cy-win
 			# We are running under realtime scheduling conditions.
 			# We should yield now.
 

+ 1 - 0
awlsim/gui/util.py

@@ -28,6 +28,7 @@ from awlsim.common.monotonic import monotonic_time #+cimport
 from awlsim.common.datatypehelpers import * #+cimport
 from awlsim.common.profiler import *
 from awlsim.core.datatypes import AwlDataType
+from awlsim.core.symbolparser import SymbolTable, Symbol, SymTabParser
 
 import sys
 import traceback