New submission from Jose Gabriel <josegabriel.fagundesribe...@gmail.com>:
I was doing a small serial communication system using pyserial. when I done the script on a .py file, it not worked. but when I opened the python console and writed line by line the same code of the .py file, it worked. the .py file: import serial ser = serial.Serial('com5') ser.write('L'.encode()) ser.close() it not worked. on the python console: python>> import serial python>> ser = serial.Serial('com5') python>> ser.write('L'.encode()) python>> ser.close() It worked. PySerial 3.4 ---------- messages: 374788 nosy: JDev priority: normal severity: normal status: open title: Problem with serial communication type: resource usage versions: Python 3.8 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue41469> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com