Skip to main content

smartypants: remove some leftover debugging code

ID
1308f4a
date
2026-05-09 08:30:47+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
7452067
message
smartypants: remove some leftover debugging code
changed files
3 files, 5 additions, 2 deletions

Changed files

CHANGELOG.md (4700) → CHANGELOG.md (4771)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9fae1a2..e9ba370 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # CHANGELOG
 
+## v39 - 2026-05-09
+
+Remove some debugging code that was left in v38.
+
 ## v38 - 2026-05-09
 
 Remove the `smartypants` dependency from `chives.text`.

src/chives/__init__.py (391) → src/chives/__init__.py (391)

diff --git a/src/chives/__init__.py b/src/chives/__init__.py
index d67a6f0..e42c280 100644
--- a/src/chives/__init__.py
+++ b/src/chives/__init__.py
@@ -11,4 +11,4 @@ I share across multiple sites.
 
 """
 
-__version__ = "38"
+__version__ = "39"

src/chives/smartypants.py (10516) → src/chives/smartypants.py (10488)

diff --git a/src/chives/smartypants.py b/src/chives/smartypants.py
index 9224f63..df126cc 100644
--- a/src/chives/smartypants.py
+++ b/src/chives/smartypants.py
@@ -313,7 +313,6 @@ def tokenize(text: str) -> Iterator[Token]:
             yield Token(type="tag", value=tag)
 
         previous_end = match.end()
-        print(previous_end)
 
     if previous_end < len(text):
         yield Token(type="text", value=text[previous_end:])