Skip to content

Commit

Permalink
Remove commented out Psyco code
Browse files Browse the repository at this point in the history
From the Psyco website:

> 12 March 2012
>
> Psyco is unmaintained and dead. Please look at PyPy for the
> state-of-the-art in JIT compilers for Python.

http://psyco.sourceforge.net/
  • Loading branch information
jdufresne committed Apr 8, 2018
1 parent a02d17a commit a31ad80
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 26 deletions.
6 changes: 0 additions & 6 deletions lib/yaml/reader.py
Expand Up @@ -186,9 +186,3 @@ def update_raw(self, size=1024):
self.stream_pointer += len(data)
else:
self.eof = True

#try:
# import psyco
# psyco.bind(Reader)
#except ImportError:
# pass
7 changes: 0 additions & 7 deletions lib/yaml/scanner.py
Expand Up @@ -1437,10 +1437,3 @@ def scan_line_break(self):
self.forward()
return ch
return u''

#try:
# import psyco
# psyco.bind(Scanner)
#except ImportError:
# pass

6 changes: 0 additions & 6 deletions lib3/yaml/reader.py
Expand Up @@ -183,9 +183,3 @@ def update_raw(self, size=4096):
self.stream_pointer += len(data)
if not data:
self.eof = True

#try:
# import psyco
# psyco.bind(Reader)
#except ImportError:
# pass
7 changes: 0 additions & 7 deletions lib3/yaml/scanner.py
Expand Up @@ -1428,10 +1428,3 @@ def scan_line_break(self):
self.forward()
return ch
return ''

#try:
# import psyco
# psyco.bind(Scanner)
#except ImportError:
# pass

0 comments on commit a31ad80

Please sign in to comment.