Author: Matti Picus <matti.pi...@gmail.com>
Branch: py3.6
Changeset: r96338:2583857fdf26
Date: 2019-03-20 18:05 +0200
http://bitbucket.org/pypy/pypy/changeset/2583857fdf26/

Log:    typo

diff --git a/lib_pypy/_blake2/_blake2_build.py 
b/lib_pypy/_blake2/_blake2_build.py
--- a/lib_pypy/_blake2/_blake2_build.py
+++ b/lib_pypy/_blake2/_blake2_build.py
@@ -82,11 +82,11 @@
 
 _libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'impl'))
 if BLAKE2_USE_SSE:
-    sourcesB=[os.path.join(_libdir, 'blake2b.c'), ],
-    sourcesS=[os.path.join(_libdir, 'blake2s.c'), ],
+    sourcesB=[os.path.join(_libdir, 'blake2b.c'), ]
+    sourcesS=[os.path.join(_libdir, 'blake2s.c'), ]
 else:    
-    sourcesB=[os.path.join(_libdir, 'blake2b-ref.c'), ],
-    sourcesS=[os.path.join(_libdir, 'blake2s-ref.c'), ],
+    sourcesB=[os.path.join(_libdir, 'blake2b-ref.c'), ]
+    sourcesS=[os.path.join(_libdir, 'blake2s-ref.c'), ]
 
 blake2b_ffi = FFI()
 blake2b_ffi.cdef(blake_cdef)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to