summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sync w/external release 0.1.2. Please see PEP 360 before making changes to ↵Phillip J. Eby2006-06-127-59/+146
| | | | external packages.
* Patch #1503046, Conditional compilation of zlib.(de)compressobj.copyNeal Norwitz2006-06-126-62/+149
| | | | | copy is only in newer versions of zlib. This should allow zlibmodule to work with older versions like the Tru64 buildbot.
* Impl ssize_tNeal Norwitz2006-06-122-105/+110
|
* Remove unused importNeal Norwitz2006-06-121-1/+1
|
* i and j are initialized below when used. No need to do it twiceNeal Norwitz2006-06-121-1/+1
|
* Fix the socket tests so they can be run concurrently. Backport candidateNeal Norwitz2006-06-125-6/+52
|
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-124-5/+13
| | | | at the NeedForSpeed sprint.
* Fix indentation of case and a Py_ssize_t issue.Neal Norwitz2006-06-121-2/+2
|
* Fix typo. Backport if anyone cares. :-)Neal Norwitz2006-06-122-2/+2
|
* Don't leak the list object if there's an error allocating the item storage. ↵Neal Norwitz2006-06-121-1/+3
| | | | Backport candidate
* Don't truncate if size_t is bigger than uintNeal Norwitz2006-06-121-1/+1
|
* Cleanup: Remove import of types to get StringTypes, we can just use basestring.Neal Norwitz2006-06-121-6/+5
|
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-123-9/+10
|
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-121-5/+6
|
* Cleanup Py_ssize_t a little (get rid of second #ifdef)Neal Norwitz2006-06-121-5/+2
|
* Get test to pass on S/390. Shout if you think this change is incorrect.Neal Norwitz2006-06-111-1/+6
|
* compare_generic_iter(): Fixed the failure of test_wsgiref's testFileWrapperTim Peters2006-06-111-12/+7
| | | | | | | | | | | when running with -O. test_simple_validation_error still fails under -O. That appears to be because wsgiref's validate.py uses `assert` statements all over the place to check arguments for sanity. That should all be changed (it's not a logical error in the software if a user passes bogus arguments, so this isn't a reasonable use for `assert` -- checking external preconditions should generally raise ValueError or TypeError instead, as appropriate).
* Fix test on PPC64 buildbot. It raised an IOError (really an URLError whichNeal Norwitz2006-06-111-1/+1
| | | | | derives from an IOError). That seems valid. Env Error includes both OSError and IOError, so this seems like a reasonable fix.
* Try to fix another networking test. The problem is that if hosts haveNeal Norwitz2006-06-111-4/+5
| | | | | | | | a search path setup, some of these hosts resolve to the wrong address. By appending a period to the hostname, the hostname should only resolve to what we want it to resolve to. Hopefully this doesn't break different bots. Also add more info to failure message to aid debugging test failure.
* Try to fix several networking tests. The problem is that if hosts haveNeal Norwitz2006-06-113-3/+3
| | | | | | a search path setup, some of these hosts resolve to the wrong address. By appending a period to the hostname, the hostname should only resolve to what we want it to resolve to. Hopefully this doesn't break different bots.
* - Change fixapplepython23.py to ensure that it will run with /usr/bin/pythonRonald Oussoren2006-06-112-5/+22
| | | | | on intel macs. - Fix some minor problems in the installer for OSX
* Use configure to substitute the correct prefix instead of hardcodingRonald Oussoren2006-06-111-1/+1
|
* Remove message about using make frameworkinstall, that's no longer necesssaryRonald Oussoren2006-06-111-6/+0
|
* Add missing svn:eol-style property to text files.Tim Peters2006-06-111-36/+36
|
* Whitespace normalization.Tim Peters2006-06-119-49/+49
|
* Release the GIL during COM method calls, to avoid deadlocks inThomas Heller2006-06-111-3/+10
| | | | Python coded COM objects.
* Bug #1498146: fix optparse to handle Unicode strings in option help,Greg Ward2006-06-113-7/+48
| | | | description, and epilog.
* SF #1366250: optparse docs: fix inconsistency in variable name; minor tweaks.Greg Ward2006-06-112-7/+9
|
* This patch improves the L&F of IDLE on OSX. The changes are conditionalized onRonald Oussoren2006-06-118-20/+130
| | | | | being in an IDLE.app bundle on darwin. This does a slight reorganisation of the menus and adds support for file-open events.
* Fix errors found by pycheckerNeal Norwitz2006-06-115-8/+11
|
* Fix errors found by pychecker.Neal Norwitz2006-06-111-3/+6
| | | | | | I think these changes are correct, but I'm not sure. Could someone who knows how this module works test it? It can at least start on the cmd line.
* warnings was imported at module scope, no need to import againNeal Norwitz2006-06-111-1/+1
|
* Fix errors found by pycheckerNeal Norwitz2006-06-112-2/+3
|
* f_code can't be NULL based on Frame_New and other code that derefs it.Neal Norwitz2006-06-111-2/+2
| | | | So there doesn't seem to be much point to checking here.
* Update doc to make it agree with code.Neal Norwitz2006-06-111-10/+4
| | | | Bottom factor out some common code.
* Add versionadded to docNeal Norwitz2006-06-111-0/+2
|
* Wrap some long linesNeal Norwitz2006-06-111-15/+10
| | | | | Top/Bottom factor out some common expressions Add a XXX comment about widing offset.
* Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL.Neal Norwitz2006-06-111-4/+2
| | | | | We know it's not NULL from the ParseTuple and DbObject_Check will verify it's not NULL.
* Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately,Greg Ward2006-06-114-45/+109
| | | | | i.e. do *not* expand tabs, but treat them as whitespace that is not equivalent to spaces. Add a couple of test cases. Clarify docs.
* shuffle() doscstring: Removed warning about sequence lengthTim Peters2006-06-101-12/+6
| | | | | | | | | versus generator period. While this was a real weakness of the older WH generator for lists with just a few dozen elements, and so could potentially bite the naive ;-), the Twister should show excellent behavior up to at least 600 elements. Module docstring: reflowed some jarringly short lines.
* Suppress warning on MacOSX about possible use before set of proc.Skip Montanaro2006-06-101-1/+1
|
* Handle failure of PyMem_Realloc.Thomas Heller2006-06-101-1/+4
|
* Don't use C++ comment.Thomas Heller2006-06-101-1/+1
|
* Fix the second occurrence of the problematic printf format.Thomas Heller2006-06-101-5/+1
|
* Fix a wrong printf format.Thomas Heller2006-06-101-6/+1
|
* New docs for ctypes.Thomas Heller2006-06-103-565/+925
|
* credit for SF patch #1303595Fred Drake2006-06-101-0/+1
|
* SF patch #1303595: improve description of __builtins__, explaining how itFred Drake2006-06-101-4/+14
| | | | | varies between __main__ and other modules, and strongly suggest not touching it but using __builtin__ if absolutely necessary
* Upgrade to ctypes version 0.9.9.7.Thomas Heller2006-06-108-30/+308
| | | | | | | | Summary of changes: - support for 'variable sized' data - support for anonymous structure/union fields - fix severe bug with certain arrays or structures containing more than 256 fields
* Upgrade to ctypes version 0.9.9.7.Thomas Heller2006-06-106-284/+496
| | | | | | | | Summary of changes: - support for 'variable sized' data - support for anonymous structure/union fields - fix severe bug with certain arrays or structures containing more than 256 fields