- 15 Agu, 2006 4 kayıt (commit)
-
-
Neal Norwitz yazdı
taken from a Debian patch. Should we update the version for each release?
-
Neal Norwitz yazdı
sporadically on other platforms. This is really a band-aid that doesn't fix the underlying issue in SocketServer. It's not clear if it's worth it to fix SocketServer, however, I opened a bug to track it: http://python.org/sf/1540386
-
Neal Norwitz yazdı
Now we're even. :-)
-
Tim Peters yazdı
-
- 14 Agu, 2006 21 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
file correctly even on Windows.
-
Georg Brandl yazdı
when file is read-only.
-
Georg Brandl yazdı
raises the correct exceptions.
-
Georg Brandl yazdı
Add a test to test_inspect to make sure indented source is recognized correctly. (fixes #1224621)
-
Georg Brandl yazdı
-
Thomas Heller yazdı
-
Thomas Heller yazdı
Remove the -no-stack-protector compiler flag for OpenBSD as it has been reported to be unneeded.
-
Marc-André Lemburg yazdı
-
Georg Brandl yazdı
-
Marc-André Lemburg yazdı
-
Thomas Heller yazdı
ctypes instances no longer have the internal and undocumented '_as_parameter_' attribute which was used to adapt them to foreign function calls; this mechanism is replaced by a function pointer in the type's stgdict. In the 'from_param' class methods, try the _as_parameter_ attribute if other conversions are not possible. This makes the documented _as_parameter_ mechanism work as intended. Change the ctypes version number to 1.0.1.
-
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.
-
Thomas Heller yazdı
area because the size if unknown in source/callproc.c.
-
Thomas Heller yazdı
Fixes klockwork issues #188, #189.
-
Thomas Heller yazdı
Fixes klockwork issues #183, #184, #185.
-
Thomas Heller yazdı
Fixes klockwork issue #207.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
about the best we can do is call PyErr_WriteUnraisable and go on. We won't be able to do the call below either, so verify delstr is valid.
-
Neal Norwitz yazdı
-
- 13 Agu, 2006 14 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Klocwork 225-228
-
Neal Norwitz yazdı
Klocwork 281
-
Neal Norwitz yazdı
(Followup of Klocwork 274)
-
Neal Norwitz yazdı
Fix a bunch of refleaks in the init of the module. This would only be found when running python -v.
-
Neal Norwitz yazdı
Klocwork 341-342
-
Neal Norwitz yazdı
that PyString_AsString() returns a valid pointer. (The problem can arise when zlib.decompress doesn't return a string.) Klocwork 346
-
Neal Norwitz yazdı
Klocwork 180-181
-
Neal Norwitz yazdı
Fix a bunch of refleaks in the init of the module. This would only be found when running python -v.
-
Neal Norwitz yazdı
__oct__, __hex__ don't return a string. Klocwork 308
-
Neal Norwitz yazdı
to write the .pyc to NULL. Check results of PyList_GetItem() and PyModule_GetDict() are not NULL. Klocwork 282, 283, 285
-
Neal Norwitz yazdı
Should fix most of Klocwork 234-272.
-
Neal Norwitz yazdı
Verify that PyEval_Get{Globals,Locals} returned valid pointers. Klocwork 231-232
-
Neal Norwitz yazdı
-
- 12 Agu, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
were failing due to inappropriate clipping of numbers larger than 2**31 with new-style classes. (typeobject.c) In reviewing the code for classic classes, there were 2 problems. Any negative value return could be returned. Always return -1 if there was an error. Also make the checks similar with the new-style classes. I believe this is correct for 32 and 64 bit boxes, including Windows64. Add a test of classic classes too.
-