diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-03-02 10:49:08 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2021-03-02 10:49:08 +0200 |
commit | 76f095f06a15ba6290f676cce290892f1ff5e822 (patch) | |
tree | ad79440a8ffb6b8571c03000dc7ba20739e9574b /pypy/module/sys/app.py | |
parent | fix structseq attribute setter error message (diff) | |
download | pypy-76f095f06a15ba6290f676cce290892f1ff5e822.tar.gz pypy-76f095f06a15ba6290f676cce290892f1ff5e822.tar.bz2 pypy-76f095f06a15ba6290f676cce290892f1ff5e822.zip |
sync Py_.*Flags with sys.flags, issue 3409
Diffstat (limited to 'pypy/module/sys/app.py')
-rw-r--r-- | pypy/module/sys/app.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pypy/module/sys/app.py b/pypy/module/sys/app.py index ea1100517e..52d42880e8 100644 --- a/pypy/module/sys/app.py +++ b/pypy/module/sys/app.py @@ -75,11 +75,11 @@ def callstats(): return None copyright_str = """ -Copyright 2003-2016 PyPy development team. +Copyright 2003-2021 PyPy development team. All Rights Reserved. For further information, see <http://pypy.org> -Portions Copyright (c) 2001-2016 Python Software Foundation. +Portions Copyright (c) 2001-2021 Python Software Foundation. All Rights Reserved. Portions Copyright (c) 2000 BeOpen.com. @@ -92,6 +92,8 @@ Portions Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved. """ +# Keep synchronized with pypy.interpreter.app_main.sys_flags and +# pypy.module.cpyext._flags # This is tested in test_app_main.py class sysflags: |