Skip to content

Commit 8ebc2b0

Browse files
committed
Minor fix.
1 parent 24f4329 commit 8ebc2b0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ By running `python -m mpyc` instead you even get this REPL with the MPyC runtime
5757
The file `gen.bat` shows how to generate fresh key material for SSL. To generate SSL key material of your own, first run
5858
`pip install cryptography`.
5959

60-
Copyright © 2018-2024 Berry Schoenmakers
60+
Copyright © 2018-2025 Berry Schoenmakers

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# -- Project information -----------------------------------------------------
2222

2323
project = 'MPyC'
24-
copyright = '2018 - 2024, Berry Schoenmakers'
24+
copyright = '2018 - 2025, Berry Schoenmakers'
2525
author = 'Berry Schoenmakers'
2626

2727
# The short X.Y version

mpyc/gfpx.py

+3
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,9 @@ def _mul(cls, a, b):
304304

305305
@classmethod
306306
def _lshift(cls, a, n):
307+
if not a:
308+
return []
309+
307310
return [0] * n + a
308311

309312
@classmethod

0 commit comments

Comments
 (0)