Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
0334058f
Commit
0334058f
authored
Oct 12, 2015
by
Damien George
Browse files
Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.
parent
6206f431
Changes
22
Hide whitespace changes
Inline
Side-by-side
tools/gen-changelog.sh
View file @
0334058f
#!/bin/sh
echo
"Micro
Python change log"
echo
"MicroPython change log"
for
t
in
$(
git tag |
grep
-v
v1.0-rc1 |
sort
-rV
)
;
do
echo
''
...
...
unix/main.c
View file @
0334058f
...
...
@@ -153,7 +153,7 @@ STATIC char *strjoin(const char *s1, int sep_char, const char *s2) {
#endif
STATIC
int
do_repl
(
void
)
{
mp_hal_stdout_tx_str
(
"Micro
Python "
MICROPY_GIT_TAG
" on "
MICROPY_BUILD_DATE
"; "
MICROPY_PY_SYS_PLATFORM
" version
\n
"
);
mp_hal_stdout_tx_str
(
"MicroPython "
MICROPY_GIT_TAG
" on "
MICROPY_BUILD_DATE
"; "
MICROPY_PY_SYS_PLATFORM
" version
\n
"
);
#if MICROPY_USE_READLINE == 1
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment