2014-05-03 18:27:38 -04:00
|
|
|
/*
|
2017-06-30 03:22:17 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
// *FORMAT-OFF*
|
|
|
|
|
2015-01-01 15:27:54 -05:00
|
|
|
#include "py/mpconfig.h"
|
|
|
|
|
2014-01-04 10:57:35 -05:00
|
|
|
// All the qstr definitions in this file are available as constants.
|
2014-03-08 10:24:39 -05:00
|
|
|
// That is, they are in ROM and you can reference them simply as MP_QSTR_xxxx.
|
2014-01-04 10:57:35 -05:00
|
|
|
|
2015-01-11 12:52:45 -05:00
|
|
|
// qstr configuration passed to makeqstrdata.py of the form QCFG(key, value)
|
2015-01-11 17:27:30 -05:00
|
|
|
QCFG(BYTES_IN_LEN, MICROPY_QSTR_BYTES_IN_LEN)
|
2015-07-20 07:03:13 -04:00
|
|
|
QCFG(BYTES_IN_HASH, MICROPY_QSTR_BYTES_IN_HASH)
|
2015-01-11 12:52:45 -05:00
|
|
|
|
2023-10-19 16:42:36 -04:00
|
|
|
// CIRCUITPY-CHANGE: translatable messages removed
|
2023-10-18 17:49:14 -04:00
|
|
|
|
2015-01-11 12:52:45 -05:00
|
|
|
Q()
|
2014-04-27 14:23:46 -04:00
|
|
|
Q(*)
|
2015-10-12 16:49:03 -04:00
|
|
|
Q(_)
|
2017-01-26 23:10:09 -05:00
|
|
|
Q(/)
|
2021-07-26 10:43:35 -04:00
|
|
|
#if MICROPY_PY_SYS_PS1_PS2
|
|
|
|
Q(>>> )
|
|
|
|
Q(... )
|
|
|
|
#endif
|
2018-09-16 00:23:53 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_STR_OP_MODULO
|
2014-04-15 17:03:55 -04:00
|
|
|
Q(%#o)
|
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file
- add special rule for generating a central header that contains all
extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED
variable. Each platform appends a list of sources that may contain
qstrings into a new build variable: SRC_QSTR. Any autogenerated
prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable.
- remove most qstrings from py/qstrdefs, keep only qstrings that
contain special characters - these cannot be easily detected in the
sources without additional annotations
- remove most manual qstrdefs, use qstrdef autogen for: py, cc3200,
stmhal, teensy, unix, windows, pic16bit:
- remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.)
- remove all port specific qstrdefs except for special strings
- append sources for qstr generation in platform makefiles (SRC_QSTR)
2016-03-10 04:22:41 -05:00
|
|
|
Q(%#x)
|
2018-09-16 00:23:53 -04:00
|
|
|
#else
|
2021-04-20 21:04:23 -04:00
|
|
|
Q({:#o})
|
|
|
|
Q({:#x})
|
2018-09-16 00:23:53 -04:00
|
|
|
#endif
|
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file
- add special rule for generating a central header that contains all
extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED
variable. Each platform appends a list of sources that may contain
qstrings into a new build variable: SRC_QSTR. Any autogenerated
prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable.
- remove most qstrings from py/qstrdefs, keep only qstrings that
contain special characters - these cannot be easily detected in the
sources without additional annotations
- remove most manual qstrdefs, use qstrdef autogen for: py, cc3200,
stmhal, teensy, unix, windows, pic16bit:
- remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.)
- remove all port specific qstrdefs except for special strings
- append sources for qstr generation in platform makefiles (SRC_QSTR)
2016-03-10 04:22:41 -05:00
|
|
|
Q({:#b})
|
2017-12-04 20:14:57 -05:00
|
|
|
Q( )
|
2015-04-03 17:09:23 -04:00
|
|
|
Q(\n)
|
2014-01-23 17:22:00 -05:00
|
|
|
Q(<module>)
|
|
|
|
Q(<lambda>)
|
|
|
|
Q(<listcomp>)
|
|
|
|
Q(<dictcomp>)
|
|
|
|
Q(<setcomp>)
|
|
|
|
Q(<genexpr>)
|
2014-01-25 08:51:19 -05:00
|
|
|
Q(<string>)
|
2014-01-23 17:22:00 -05:00
|
|
|
Q(<stdin>)
|
2014-04-12 22:28:46 -04:00
|
|
|
Q(utf-8)
|
2018-02-18 08:26:14 -05:00
|
|
|
|
2021-12-11 06:40:21 -05:00
|
|
|
#if MICROPY_MODULE_FROZEN
|
|
|
|
Q(.frozen)
|
|
|
|
#endif
|