This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Process finished with exit code -1073741795 (0xC000001D)
Type: crash Stage: resolved
Components: Extension Modules Versions: Python 3.6
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: eryksun, mengdexiaolian
Priority: normal Keywords:

Created on 2018-11-15 04:59 by mengdexiaolian, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg329942 - (view) Author: (mengdexiaolian) Date: 2018-11-15 04:59
when i run the following script with face_recognition module, there is a unnormal exception occurs:
Process finished with exit code -1073741795 (0xC000001D)

import face_recognition

encodings = []

filename1 = "catherine.jpg"
image1 = face_recognition.load_image_file(filename1)
print(image1)
encoding1 = face_recognition.face_encodings(image1)[0]
print("bobo",encoding1)
encodings.append(encoding1)
print(encodings)

filename2 = "william.jpg"
image2 = face_recognition.load_image_file(filename2)
encoding2 = face_recognition.face_encodings(image2)[0]
encodings.append(encoding2)
print(encodings)
msg329943 - (view) Author: Eryk Sun (eryksun) * (Python triager) Date: 2018-11-15 05:45
0xC000001D is STATUS_ILLEGAL_INSTRUCTION. This is probably due to a third-party bug that's corrupting the return address on the stack, so I'm closing this issue for now. It can be reopened if the developers of the face_recognition module determine that Python itself is at fault.
History
Date User Action Args
2022-04-11 14:59:08adminsetgithub: 79435
2018-11-15 05:45:15eryksunsetstatus: open -> closed

type: compile error -> crash

nosy: + eryksun
messages: + msg329943
resolution: third party
stage: resolved
2018-11-15 04:59:50mengdexiaoliancreate