diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-29 16:12:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-29 16:12:58 (GMT) |
commit | bfbfc8deb2b1a1886fc5af74da593e9409dc99b9 (patch) | |
tree | 724f52aeffed967471bf769eb089fab0a7d4ac58 /Misc | |
parent | 1770fde94cb2bbcd05f4e3e72e2b78074566f522 (diff) | |
download | cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.zip cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.tar.gz cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.tar.bz2 |
Removed unintentional trailing spaces in text files.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/Porting | 2 | ||||
-rw-r--r-- | Misc/gdbinit | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Misc/Porting b/Misc/Porting index 51f73e6..c283cb2 100644 --- a/Misc/Porting +++ b/Misc/Porting @@ -27,7 +27,7 @@ And you'll need a config.c file, which lists the built-in modules you support. Start with Modules/config.c.in. Finally, you'll run into some things that aren't supported on your -target platform. Forget about the posix module for now -- simply take +target platform. Forget about the posix module for now -- simply take it out of the config.c file. Bang on it until you get a >>> prompt. (You may have to disable the diff --git a/Misc/gdbinit b/Misc/gdbinit index 9484b51..3b6fe50 100644 --- a/Misc/gdbinit +++ b/Misc/gdbinit @@ -150,10 +150,10 @@ end # generally useful macro to print a Unicode string def pu - set $uni = $arg0 + set $uni = $arg0 set $i = 0 while (*$uni && $i++<100) - if (*$uni < 0x80) + if (*$uni < 0x80) print *(char*)$uni++ else print /x *(short*)$uni++ |