[pypy-commit] pypy py3.6: typo

mattip pypy.commits at gmail.com
Wed Mar 20 12:05:52 EDT 2019


Author: Matti Picus <matti.picus at 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)


More information about the pypy-commit mailing list