2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

fix: fix quotation

This commit is contained in:
Eisuke Kawashima
2025-10-25 03:58:46 +09:00
committed by Stefan Seefeld
parent cc873d9682
commit 5f5f38fa8a

View File

@@ -38,7 +38,7 @@
12
>>> try: modify(p)
... except TypeError: pass
... else: 'print(expected a TypeError)'
... else: print('expected a TypeError')
>>> look(None)
-1
>>> store(p)
@@ -61,7 +61,7 @@ bye
13
>>> try: modify(z)
... except TypeError: pass
... else: 'print(expected a TypeError)'
... else: print('expected a TypeError')
>>> Z.get() # should be None
>>> store(z)
@@ -84,7 +84,7 @@ bye
17
>>> try: modify(x)
... except TypeError: pass
... else: 'print(expected a TypeError)'
... else: print('expected a TypeError')
>>> look(None)
-1
>>> store(x)