Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] invalid non-printable character U+FEFF #384

Open
shenjackyuanjie opened this issue Feb 6, 2023 · 6 comments
Open

[BUG] invalid non-printable character U+FEFF #384

shenjackyuanjie opened this issue Feb 6, 2023 · 6 comments

Comments

@shenjackyuanjie
Copy link

I try to use memory profiler in my project, but it gives me this issue

shenjack  DR  ➜ (main  1)  ♥ 13:13  mprof.exe run DR.py
mprof: Sampling memory every 0.1s
running new process
running as a Python program...
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "D:\APPS\CPython\Python311\Lib\site-packages\memory_profiler.py", line 1351, in <module>
    exec_with_profiler(script_filename, prof, args.backend, script_args)
  File "D:\APPS\CPython\Python311\Lib\site-packages\memory_profiler.py", line 1252, in exec_with_profiler
    exec(compile(f.read(), filename, 'exec'), ns, ns)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "DR.py", line 1
    """
    ^
SyntaxError: invalid non-printable character U+FEFF

you can see the file in my project

Python info

  • Version: 3.11.0
  • Branch: ``
  • Implementation: CPython
  • Compiler: MSC v.1933 64 bit (AMD64)

System info

  • System: Windows-10-10.0.19045-SP0
  • Computer name: shenjack-5600X
  • machine: AMD64
  • processor: AMD64 Family 25 Model 33 Stepping 0, AuthenticAMD
  • release: 10
  • version: 10.0.19045

Python info and System info gen by DR_crash_report

@altendky
Copy link
Collaborator

altendky commented Feb 6, 2023

Looks like a byte order mark. I think notepad has a tendency to add these? For a workaround, you might try copy/pasting to a new file in another editor and saving that. For a potential change in this library, we could use encodings.utf_8_sig to open the file. That would be useful in this case. More generally, it would be nice if there is a way to open the file "like Python opens the file". That would cover coding: comments, but I don't know how that is done or if it is available to us at all.

@shenjackyuanjie
Copy link
Author

hmmmmm
thanks for anser!

@shenjackyuanjie
Copy link
Author

well
is actully my? fault
image

@shenjackyuanjie
Copy link
Author

maybe close this issue later

@altendky
Copy link
Collaborator

I think that it is triggered by your situation. I don't think that makes it "your fault". I also don't think that means there isn't anything to fix in this project. I think we should make a change to allow for BOMs, and anything else Python allows such as the coding comments. I just haven't made the time to do that.

@shenjackyuanjie
Copy link
Author

oh, got it
thanks for answer!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants