Skip to content

Commit a8222e2

Browse files
committed
Update nasm
1 parent d83ac40 commit a8222e2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ptrlib/arch/common/assembler.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ def nasm(code: Union[str, bytes],
113113
f.seek(0)
114114
output = f.read()
115115

116+
with contextlib.suppress(FileNotFoundError):
117+
# Seperate context for Windows
116118
os.unlink(fname_s)
117119
os.unlink(fname_o)
118120

119-
return output
121+
return output

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='ptrlib',
13-
version='2.4.0',
13+
version='2.4.1',
1414
description='CTF library',
1515
long_description=long_description,
1616
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)