- 06 Nov, 2013 17 commits
-
-
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.
-
Christian Heimes authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Nick Coghlan authored
- confusing line_offset parameter -> first_line parameter - systematically test and fix new file parameter - remove redundant Bytecode.show_info() API - rename Bytecode.display_code() to Bytecode.dis() and have it return the multi-line string rather than printing it directly - eliminated some not-so-helpful helpers from the bytecode_helper test support module Also fixed a longstanding defect (worked around in the test suite) where lines emitted by the dis module could include trailing white space. That no longer happens, allowing the formatting tests to be simplified to use plain string comparisons.
-
Zachary Ware authored
-
Victor Stinner authored
-
- 05 Nov, 2013 18 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Victor Stinner authored
-
Victor Stinner authored
Py_DECREF(self) if PyThread_allocate_lock() failed instead of calling directly type->tp_free(self), to keep the chained list of objects consistent when Python is compiled in debug mode fails, don't consume the row (restore it) and fail immediatly (don't call pysqlite_step())
-
Victor Stinner authored
fails, don't consume the row (restore it) and fail immediatly (don't call pysqlite_step())
-
Victor Stinner authored
PyList_Append() fails
-
Victor Stinner authored
_pysqlite_fetch_one_row() failure
-
Tim Golden authored
Issue #10197 Tweak docs for subprocess.getstatusoutput and align the documentation, the module docstring, and the function docstring.
-
Ned Deily authored
-
Ned Deily authored
Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Patch by Serhiy Storchaka and Vajrasky Kok.
-
- 04 Nov, 2013 5 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
n structure.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-