- 08 Nov, 2013 2 commits
-
-
Stefan Krah authored
-
Stefan Krah authored
-
- 07 Nov, 2013 19 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
failure
-
Victor Stinner authored
-
Victor Stinner authored
are used. Move also _Py_IDENTIFIER() defintions to the top in modified files to remove identifiers duplicated in the same file.
-
Victor Stinner authored
string for "__builtins__" literal string
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
if the input string is NULL
-
Martin v. Löwis authored
Patch by Andrei Dorian Duma.
-
Guido van Rossum authored
-
Ezio Melotti authored
-
Guido van Rossum authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
R David Murray authored
-
R David Murray authored
Original patch by Vajrasky Kok, further improved (I hope) by me.
-
Victor Stinner authored
Use aslo PyUnicode_FromFormat() to format the line so only one call to PyFile_WriteObject() is needed. tb_displayline() of Python/traceback.c has similar implementation.
-
Guido van Rossum authored
asyncio: Add close() back to Unix selector event loop, to remove all signal handlers. Should fix buildbot issues.
-
- 06 Nov, 2013 19 commits
-
-
Victor Stinner authored
The comment is meaningless since changeset 4e985a96a612.
-
Victor Stinner authored
-
Victor Stinner authored
_PyUnicode_CompareWithId() is faster than PyUnicode_CompareWithASCIIString() when both strings are equal and interned. Add also _PyId_builtins identifier for "builtins" common string.
-
Victor Stinner authored
Replace _PyUnicode_AsString()+strcmp() with PyUnicode_CompareWithASCIIString().
-
Victor Stinner authored
string "flush" to call the flush method
-
Victor Stinner authored
instead of literal "get" string
-
Victor Stinner authored
literal string
-
Victor Stinner authored
-
Victor Stinner authored
instead of creating temporary Unicode string objects Add also more identifiers in pythonrun.c to avoid temporary Unicode string objets for the interactive interpreter.
-
Victor Stinner authored
"modules" once
-
Victor Stinner authored
to only create the "displayhook" string once
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
identifier for the "__abstractmethods__" string
-
Victor Stinner authored
PyDict_DelItemString() but using an identifier for the key
-
Victor Stinner authored
"Py_Repr" dictionary key
-
Victor Stinner authored
Only decode the filename once. PyRun_InteractiveOneObject() uses an identifier for "<string>" string, so the byte string is only decoded once.
-
Victor Stinner authored
key from sys._xoptions
-
Victor Stinner authored
dictionary key and only decodes "\n" string once to write a newline. So "builtins" and "\n" are only decoded once from UTF-8, at the first call.
-