Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn module | Hye-Shik Chang | 2005-12-12 | 2 | -0/+11 |
| | | | | build problem on AIX. | ||||
* | Remove background image | Andrew M. Kuchling | 2005-12-12 | 1 | -1/+1 |
| | |||||
* | SF #1373150, diffs in working copy after a build | Neal Norwitz | 2005-12-11 | 3 | -3/+7 |
| | | | | | | | | Strip off leading dots and slash so the generated files are the same regardless of whether you configure in the checkout directory or build. If anyone configures in a different directory, we might want a cleaner approach using os.path.*(). Hopefully this is good enough. | ||||
* | en_sit will be freed when en is DECREF'd. Don't double free. | Neal Norwitz | 2005-12-11 | 1 | -1/+0 |
| | |||||
* | SF #1377897, Bus error in ast | Neal Norwitz | 2005-12-11 | 2 | -0/+9 |
| | | | | | | If a line had multiple semi-colons and ended with a semi-colon, we would loop too many times and access a NULL node. Exit the loop early if there are no more children. | ||||
* | SF #1370197, memory leak - ast_error_finish (in error conditions). | Neal Norwitz | 2005-12-11 | 1 | -2/+6 |
| | |||||
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 52 | -255/+272 |
| | | | | | | | | | | | | | | | | | | | In C++, it's an error to pass a string literal to a char* function without a const_cast(). Rather than require every C++ extension module to put a cast around string literals, fix the API to state the const-ness. I focused on parts of the API where people usually pass literals: PyArg_ParseTuple() and friends, Py_BuildValue(), PyMethodDef, the type slots, etc. Predictably, there were a large set of functions that needed to be fixed as a result of these changes. The most pervasive change was to make the keyword args list passed to PyArg_ParseTupleAndKewords() to be a const char *kwlist[]. One cast was required as a result of the changes: A type object mallocs the memory for its tp_doc slot and later frees it. PyTypeObject says that tp_doc is const char *; but if the type was created by type_new(), we know it is safe to cast to char *. | ||||
* | Patch #1276356: Implement new resource "urlfetch" for regrtest. | Hye-Shik Chang | 2005-12-10 | 10 | -74/+29 |
| | | | | | This enables even impatient people to run tests that require remote files such as test_normalization and test_codecmaps_*. | ||||
* | [Bug #1349316] Show how to use XML-RPC through a proxy | Andrew M. Kuchling | 2005-12-08 | 1 | -0/+27 |
| | |||||
* | add common usage example | Skip Montanaro | 2005-12-06 | 1 | -0/+17 |
| | |||||
* | Typo in a code example. | Armin Rigo | 2005-12-06 | 1 | -1/+1 |
| | |||||
* | Nobody on python-dev seemed particularly bothered that Hotshot generates half- | Armin Rigo | 2005-12-06 | 1 | -34/+2 |
| | | | | meaningless numbers, but I figured out I would fix that bug anyway. | ||||
* | Simplify logic for handling import * | Neal Norwitz | 2005-12-06 | 1 | -6/+3 |
| | |||||
* | Reduce scope of feature | Neal Norwitz | 2005-12-06 | 1 | -2/+1 |
| | |||||
* | Remove unused macro, check is done elsewhere | Neal Norwitz | 2005-12-06 | 1 | -1/+0 |
| | |||||
* | Remove unnecessary extern variable | Neal Norwitz | 2005-12-05 | 1 | -2/+0 |
| | |||||
* | mwh spotted a copied error message, make it unique (and correct) | Neal Norwitz | 2005-12-05 | 1 | -1/+1 |
| | |||||
* | Fix SF #1373161, r41552 broke test_file on OS X | Neal Norwitz | 2005-12-05 | 1 | -1/+1 |
| | | | | | You apparently can seek(0) on sys.stdin on OS X. But you can't go backwards, so seek(-1). | ||||
* | Fix bug | Michael W. Hudson | 2005-12-05 | 1 | -5/+13 |
| | | | | | | | | [ 1346144 ] Segfaults from unaligned loads in floatobject.c by using memcpy and not just blinding casting char* to double*. Thanks to Rune Holm for the report. | ||||
* | [Patch #1372995] Add \versionadded | Andrew M. Kuchling | 2005-12-04 | 2 | -0/+4 |
| | |||||
* | [Bug #1281032] Pass encoding from the input source to pyexpat's ParserCreate() | Andrew M. Kuchling | 2005-12-04 | 1 | -2/+3 |
| | |||||
* | [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵ | Andrew M. Kuchling | 2005-12-04 | 2 | -0/+11 |
| | | | | string, not a Unicode string | ||||
* | [Bug #1041501] Fix example | Andrew M. Kuchling | 2005-12-04 | 1 | -1/+1 |
| | |||||
* | [Patch #1039083] Add 'encoding' parameter to SimpleXMLRPCServer | Andrew M. Kuchling | 2005-12-04 | 3 | -18/+28 |
| | |||||
* | Use boolean name | Andrew M. Kuchling | 2005-12-04 | 1 | -1/+1 |
| | |||||
* | [Patch #893642] Add optional allow_none argument to SimpleXMLRPCServer, ↵ | Andrew M. Kuchling | 2005-12-04 | 3 | -8/+16 |
| | | | | CGIXMLRPCRequestHandler | ||||
* | [Bug #1372836] Remove unused code | Andrew M. Kuchling | 2005-12-04 | 1 | -4/+0 |
| | |||||
* | Add placeholder section on old and new-style classes | Andrew M. Kuchling | 2005-12-04 | 1 | -0/+13 |
| | |||||
* | [Bug #792570] Under Windows, socket.read() seems to run into trouble when | Andrew M. Kuchling | 2005-12-04 | 2 | -2/+16 |
| | | | | | | | | | | asked to read tens of megabytes of data. On my Mac, it hits MemoryErrors when reading around 15Mb in one chunk. The fix is to read the body in several parts, not as one big piece. It would be nice to fix the underlying socket.read() problem, too. 2.4 bugfix candidate. | ||||
* | [Bug #1222790] Set reuse-address and close-on-exec flags on the HTTP ↵ | Andrew M. Kuchling | 2005-12-04 | 2 | -1/+14 |
| | | | | listening socket | ||||
* | Bug #1368481: python.dir refers to whatsnew23 | Georg Brandl | 2005-12-02 | 1 | -1/+1 |
| | |||||
* | set expectations appropriately. ;) | Anthony Baxter | 2005-12-01 | 1 | -1/+1 |
| | |||||
* | Fix typo. | Walter Dörwald | 2005-11-30 | 1 | -1/+1 |
| | |||||
* | Remove sorting HOWTO, after converting it to a wiki page at ↵ | Andrew M. Kuchling | 2005-11-30 | 1 | -266/+0 |
| | | | | http://wiki.python.org/moin/HowTo/Sorting | ||||
* | Silence VS2005 warnings about deprecated functions. | Martin v. Löwis | 2005-11-29 | 1 | -0/+10 |
| | |||||
* | Limit x86 machine instructions and Win95 support to _M_IX86. | Martin v. Löwis | 2005-11-29 | 1 | -0/+2 |
| | |||||
* | Test another error case in PyFloat_FromString(). | Walter Dörwald | 2005-11-29 | 1 | -0/+2 |
| | |||||
* | fix link | Fred Drake | 2005-11-29 | 1 | -1/+1 |
| | |||||
* | SF#1368827 | Fredrik Lundh | 2005-11-29 | 1 | -1/+1 |
| | | | | bad link in XML-RPC documentation | ||||
* | Fix leaked reference to None. | Walter Dörwald | 2005-11-28 | 1 | -0/+1 |
| | |||||
* | Patch #1350409: Port signal handling to VS 2005. | Martin v. Löwis | 2005-11-28 | 3 | -0/+20 |
| | |||||
* | Fix memory leaks | Neal Norwitz | 2005-11-27 | 1 | -5/+8 |
| | |||||
* | Improve test coverage. Hope the test_file changes work the same on windows. | Neal Norwitz | 2005-11-27 | 5 | -0/+75 |
| | |||||
* | Patch #1162825: Support non-ASCII characters in IDLE window titles. | Martin v. Löwis | 2005-11-27 | 3 | -6/+36 |
| | |||||
* | bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵ | Georg Brandl | 2005-11-26 | 2 | -2/+7 |
| | | | | cannot be assigned attributes on the fly. | ||||
* | Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10. | Martin v. Löwis | 2005-11-26 | 2 | -6/+25 |
| | | | | | Also set _XOPEN_SOURCE to 500. Will backport to 2.4. | ||||
* | SF patch #1364946: Add a reference link from the dcoumentation of the encode | Walter Dörwald | 2005-11-25 | 2 | -3/+4 |
| | | | | and decode methods to the documentation of the default error handlers. | ||||
* | SF patch #1364545: test_cmd_line.py relied on english error messages when | Walter Dörwald | 2005-11-25 | 1 | -13/+12 |
| | | | | | invoking the Python interpreter (which didn't work on non-english Windows versions). Check return codes instead. | ||||
* | Remove unused _callers member. No need for types, use isinstance | Neal Norwitz | 2005-11-25 | 1 | -5/+2 |
| | |||||
* | Stop looping to do nothing, just pass. | Neal Norwitz | 2005-11-25 | 1 | -2/+2 |
| |