Peephole constant folding had missed UNARY_POSITIVE.
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py
index 5696500..9e8bb69 100644
--- a/Lib/test/test_peepholer.py
+++ b/Lib/test/test_peepholer.py
@@ -150,6 +150,7 @@
         for line, elem in (
             ('-0.5', '(-0.5)'),                     # unary negative
             ('~-2', '(1)'),                         # unary invert
+            ('+1', '(1)'),                          # unary positive
         ):
             asm = dis_single(line)
             self.assertTrue(elem in asm, asm)