- 02 May, 2008 6 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
This introduces a new configure option: --with-framework-name=NAME (defaulting to 'Python'). This allows you to install several copies of the Python framework with different names (such as a normal build and a debug build).
-
Facundo Batista yazdı
-
Mark Hammond yazdı
-
Gregory P. Smith yazdı
problems is in the bug report (one old, one recently introduced trying to fix the old one). In short: buffer data during socket._fileobject.read() and readlines() within a cStringIO object instead of a [] of str()s returned from the recv() call. This prevents excessive memory use due to the size parameter being passed to recv() being grossly larger than the actual size of the data returned *and* prevents excessive cpu usage due to looping in python calling recv() with a very tiny size value if min() is used as the previous memory-use bug "fix" did. It also documents what the socket._fileobject._rbufsize member is actually used for. This is a candidate for back porting to 2.5.
-
Brett Cannon yazdı
warnings.showwarning() was being used. This broke pre-existing replacements for the function since they didn't support the extra argument. Closes issue 2705.
-
- 01 May, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 30 Nis, 2008 9 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Nick Coghlan yazdı
Update command line usage documentation to reflect 2.6 changes (also includes some minor cleanups). Addresses TODO list issue 2258
-
Eric Smith yazdı
Implemented grouping, with tests. Cleaned up PyOS_ascii_formatd by breaking reformatting into smaller functions.
-
- 29 Nis, 2008 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Andrew M. Kuchling yazdı
Strip down SSL docs; I'm not managing to get test programs working, so I'll just give a minimal description
-
- 28 Nis, 2008 8 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Some of them now have tests and can be removed. Only 70 to go...
-
Georg Brandl yazdı
-
Brett Cannon yazdı
test_capi from automatically calling the function.
-
Skip Montanaro yazdı
needed (better set available in Lib/test/test_robotparser.py). Clean up a few PEP 8 nits (compound statements on a single line, whitespace around operators).
-
Skip Montanaro yazdı
-
Brett Cannon yazdı
improperly indented. Closes issue #2699.
-
Skip Montanaro yazdı
"class_descriptor", "Function" instead of "function_descriptor". Note default path value for readmodule*. Wrap some long paragraphs. Don't mention 'inpackage' which isn't part of the public API.
-
Skip Montanaro yazdı
* Avoid creating unused local variables where we can. Where we can't prefix the unused variables with '_'. * Avoid shadowing builtins where it won't change the external interface of a function. * Use None as default path arg to readmodule and readmodule_ex.
-
- 27 Nis, 2008 14 kayıt (commit)
-
-
Skip Montanaro yazdı
function parameters.
-
Skip Montanaro yazdı
* The only exception we should catch when trying to import cStringIO is an ImportError. * Delete the function signatures embedded in the mk*temp docstrings. * The tempdir global variable was initialized twice.
-
Kurt B. Kaiser yazdı
'/' char on Windows. Patch 2061 Tal Einat.
-
Kurt B. Kaiser yazdı
-
Kurt B. Kaiser yazdı
space. Patch 1196903 Jeff Shute. M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/NEWS.txt
-
Skip Montanaro yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k warnings to the use of this function soon.
-
Alexandre Vassalotti yazdı
-