- 23 May, 2007 1 kayıt (commit)
-
-
Neal Norwitz yazdı
deprecated and will be changed/removed in Python 3.0. This patch is mostly from Anthony. I tweaked some format and added a little doc.
-
- 02 May, 2007 1 kayıt (commit)
-
- 26 Nis, 2007 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode(). Use this function in posixmodule.c when implementing fdopen(). This fixes test_subprocess.py for a VisualStudio 2005 compile.
-
- 20 Mar, 2007 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability.
-
- 12 Mar, 2007 1 kayıt (commit)
-
-
Collin Winter yazdı
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. Will backport.
-
- 07 Mar, 2007 1 kayıt (commit)
-
-
Georg Brandl yazdı
exception if the -i command line option or PYTHONINSPECT environment variable is given, but break into the interactive interpreter just like on other exceptions or normal program exit. (backport)
-
- 25 Şub, 2007 1 kayıt (commit)
-
-
Neal Norwitz yazdı
of some of the common builtin types. Use a bit in tp_flags for each common builtin type. Check the bit to determine if any instance is a subclass of these common types. The check avoids a function call and O(n) search of the base classes. The check is done in the various Py*_Check macros rather than calling PyType_IsSubtype(). All the bits are set in tp_flags when the type is declared in the Objects/*object.c files because PyType_Ready() is not called for all the types. Should PyType_Ready() be called for all types? If so and the change is made, the changes to the Objects/*object.c files can be reverted (remove setting the tp_flags). Objects/typeobject.c would also have to be modified to add conditions for Py*_CheckExact() in addition to each the PyType_IsSubtype check.
-
- 19 Şub, 2007 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 12 Şub, 2007 1 kayıt (commit)
-
-
Brett Cannon yazdı
is specified at the top of the file. Also add a note that Python/Python-ast.c needs to be committed separately after a change to the AST grammar to capture the revision number of the change (which is what __version__ is set to).
-
- 19 Ock, 2007 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport.
-
- 22 Eki, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport to 2.5.
-
- 19 Eki, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
it if it is supported.
-
- 02 Eki, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
stdint.h. Will backport.
-
- 22 Eyl, 2006 2 kayıt (commit)
-
-
Neal Norwitz yazdı
of PY_FORMAT_SIZE_T to "l" for Mac OSX. I don't know a better define to use. This should get rid of the warnings on other platforms and Mac too.
-
Neal Norwitz yazdı
In addition to testing positive numbers, verify negative numbers work in configure. In order to avoid compiler warnings on OS X 10.4, also change the order of the check for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format for Py_ssize_t. This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't defined at configure time. Need to verify the buildbot results. Backport candidate (if everyone thinks this patch can't be improved).
-
- 06 Eyl, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 21 Agu, 2006 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 19 Agu, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 18 Agu, 2006 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 16 Agu, 2006 2 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
- 14 Agu, 2006 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
Replace UnicodeDecodeErrors raised during == and != compares of Unicode and other objects with a new UnicodeWarning. All other comparisons continue to raise exceptions. Exceptions other than UnicodeDecodeErrors are also left untouched.
-
- 12 Agu, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
I modified this patch some by fixing style, some error checking, and adding XXX comments. This patch requires review and some changes are to be expected. I'm checking in now to get the greatest possible review and establish a baseline for moving forward. I don't want this to hold up release if possible.
-
- 02 Agu, 2006 2 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Neal Norwitz yazdı
-
- 30 Tem, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
This provides the proper warning for struct.pack(). PyErr_Warn() is now deprecated in favor of PyErr_WarnEx(). As mentioned by Tim Peters on python-dev.
-
- 10 Tem, 2006 2 kayıt (commit)
-
-
Tim Peters yazdı
branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame.
-
Anthony Baxter yazdı
-
- 19 Haz, 2006 3 kayıt (commit)
-
-
-
Anthony Baxter yazdı
-
Neal Norwitz yazdı
-
- 14 Haz, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Haz, 2006 1 kayıt (commit)
-
-
Andrew MacIntyre yazdı
Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
-
- 12 Haz, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
at the NeedForSpeed sprint.
-
- 10 Haz, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
- update header checks, using autoconf - provide dummies for getenv, environ, and GetVersion - adjust MSC_VER check in socketmodule.c
-
- 04 Haz, 2006 4 kayıt (commit)
-
-
Tim Peters yazdı
46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
-
Georg Brandl yazdı
(thanks to Neal for review)
-
Martin v. Löwis yazdı
-
Andrew MacIntyre yazdı
-