summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Nobody on python-dev seemed particularly bothered that Hotshot generates half-Armin Rigo2005-12-061-34/+2
| | | | meaningless numbers, but I figured out I would fix that bug anyway.
* Simplify logic for handling import *Neal Norwitz2005-12-061-6/+3
|
* Reduce scope of featureNeal Norwitz2005-12-061-2/+1
|
* Remove unused macro, check is done elsewhereNeal Norwitz2005-12-061-1/+0
|
* Remove unnecessary extern variableNeal Norwitz2005-12-051-2/+0
|
* mwh spotted a copied error message, make it unique (and correct)Neal Norwitz2005-12-051-1/+1
|
* Fix SF #1373161, r41552 broke test_file on OS XNeal Norwitz2005-12-051-1/+1
| | | | | You apparently can seek(0) on sys.stdin on OS X. But you can't go backwards, so seek(-1).
* Fix bugMichael W. Hudson2005-12-051-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 \versionaddedAndrew M. Kuchling2005-12-042-0/+4
|
* [Bug #1281032] Pass encoding from the input source to pyexpat's ParserCreate()Andrew M. Kuchling2005-12-041-2/+3
|
* [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵Andrew M. Kuchling2005-12-042-0/+11
| | | | string, not a Unicode string
* [Bug #1041501] Fix exampleAndrew M. Kuchling2005-12-041-1/+1
|
* [Patch #1039083] Add 'encoding' parameter to SimpleXMLRPCServerAndrew M. Kuchling2005-12-043-18/+28
|
* Use boolean nameAndrew M. Kuchling2005-12-041-1/+1
|
* [Patch #893642] Add optional allow_none argument to SimpleXMLRPCServer, ↵Andrew M. Kuchling2005-12-043-8/+16
| | | | CGIXMLRPCRequestHandler
* [Bug #1372836] Remove unused codeAndrew M. Kuchling2005-12-041-4/+0
|
* Add placeholder section on old and new-style classesAndrew M. Kuchling2005-12-041-0/+13
|
* [Bug #792570] Under Windows, socket.read() seems to run into trouble whenAndrew M. Kuchling2005-12-042-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. Kuchling2005-12-042-1/+14
| | | | listening socket
* Bug #1368481: python.dir refers to whatsnew23Georg Brandl2005-12-021-1/+1
|
* set expectations appropriately. ;)Anthony Baxter2005-12-011-1/+1
|
* Fix typo.Walter Dörwald2005-11-301-1/+1
|
* Remove sorting HOWTO, after converting it to a wiki page at ↵Andrew M. Kuchling2005-11-301-266/+0
| | | | http://wiki.python.org/moin/HowTo/Sorting
* Silence VS2005 warnings about deprecated functions.Martin v. Löwis2005-11-291-0/+10
|
* Limit x86 machine instructions and Win95 support to _M_IX86.Martin v. Löwis2005-11-291-0/+2
|
* Test another error case in PyFloat_FromString().Walter Dörwald2005-11-291-0/+2
|
* fix linkFred Drake2005-11-291-1/+1
|
* SF#1368827Fredrik Lundh2005-11-291-1/+1
| | | | bad link in XML-RPC documentation
* Fix leaked reference to None.Walter Dörwald2005-11-281-0/+1
|
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-283-0/+20
|
* Fix memory leaksNeal Norwitz2005-11-271-5/+8
|
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-275-0/+75
|
* Patch #1162825: Support non-ASCII characters in IDLE window titles.Martin v. Löwis2005-11-273-6/+36
|
* bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵Georg Brandl2005-11-262-2/+7
| | | | cannot be assigned attributes on the fly.
* Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.Martin v. Löwis2005-11-262-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 encodeWalter Dörwald2005-11-252-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 whenWalter Dörwald2005-11-251-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 isinstanceNeal Norwitz2005-11-251-5/+2
|
* Stop looping to do nothing, just pass.Neal Norwitz2005-11-251-2/+2
|
* No need for types, use isinstanceNeal Norwitz2005-11-253-9/+6
|
* Use sorted() builtinNeal Norwitz2005-11-251-10/+5
|
* Test is still disabled, but access through public moduleNeal Norwitz2005-11-251-2/+2
|
* Get symtable to limp along, can run compiler/symbols.py. Not saying much, ↵Neal Norwitz2005-11-251-1/+4
| | | | needs more work.
* Cleanup a bit more references so test_urllibnet is stable (test_urllib2 is ↵Neal Norwitz2005-11-251-2/+4
| | | | sometimes stable, at least in isolation)
* Fix some comment typosNeal Norwitz2005-11-251-1/+1
|
* Fix typo in comment.Neal Norwitz2005-11-241-1/+2
| | | | | | Delete globals which contain variable information at the end of the test. This makes the test stable (no reported leaks) when running regrtest -R to find reference leaks.
* Fix a few more ref leaks. Backport candidateNeal Norwitz2005-11-243-4/+8
|
* Move registration of the codec search function to the module scopeNeal Norwitz2005-11-241-17/+18
| | | | | | so it is only executed once. Otherwise the same search function is repeated added to the codec search path when regrtest is run with -R and leaks are reported.
* move test into a unittest.TestCase, no functional changesNeal Norwitz2005-11-241-74/+74
|
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-243-5/+47
|