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")

