Skip to content

Replaces strlen() with len() and substr() with a slice #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stenway/sml.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def __init__(self, rootName = "Root"):
self.emptyNodesAfter = []

def setDefaultIndentation(self, defaultIndentation):
if (defaultIndentation != None and strlen(defaultIndentation) > 0 and
if (defaultIndentation != None and len(defaultIndentation) > 0 and
not WsvString.isWhitespace(defaultIndentation)):
raise Exception("Indentation value contains non whitespace character")

Expand Down Expand Up @@ -488,7 +488,7 @@ def serializeDocumentNonPreserving(document, minified = False):
endKeyword = None

result = SmlSerializer.serializeElementNonPreserving(document.getRoot(), 0, defaultIndentation, endKeyword)
result = substr(result, 0, -1)
result = result[0:-1]
return result

def serializeElementNonPreserving(element, level, defaultIndentation, endKeyword):
Expand Down