IronPython 3 printing only "&" and single characters

When I try to test IronPython 3 my script printouts always start with a line with a single “&” and then every other line only includes the first character of each print statement.

# ####################################################################################################
# ####################################################################################################
# # Common Imports
# ####################################################################################################
# ####################################################################################################

# Imports
# import pyRevit
from pyrevit import DB, revit, script, forms, HOST_APP

# Specific Imports
from Autodesk.Revit.DB import (FilteredElementCollector, View, Categories, Category, Element, CategoryType, Viewport,
                               BuiltInCategory, SharedParameterElement, Color, Transaction, OverrideGraphicSettings,
                               FamilySymbol, ParameterTypeId, SpecTypeId)
from Autodesk.Revit.UI import UIDocument
from Autodesk.Revit.ApplicationServices import Application
# from itertools import izip_longest
import System
from datetime import datetime
# # ################################################################################
# # Debug toggles
globalDebug = True
disabledScript = False


def dprint(*printItems):
    if globalDebug:
        for pI in printItems:
            print(pI)

# ####################################################################################################
# ####################################################################################################
# #  IronPython 3.4 TESTING
# ####################################################################################################
# ####################################################################################################

print("Test")
print("each")

Updated to 5.3.1 and the ampersand is gone but the print still only prints the “T” and “e”.

May be the same issue as

Yeah, I was able to find a few issues on the github, it doesn’t look like it’s working yet.

Real pain because it appears I can only open word docs using 3.4. To test I made a function that prints strings by each character. Worked to see if I could open word docs but obviously not acceptable to push out to all our Revit users.

def d3print(*printItems):
    if globalDebug:
        for pI in printItems:
            for char in str(pI):
                print(char)