summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-2264-1684/+1632
| | | | disutils2, and distutils is now feature-frozen.
* Add importlib benchmarks which try to be "realistic" by importing the decimalBrett Cannon2010-07-221-7/+50
| | | | module which is the largest module in the stdlib.
* Issue #9323: Fixed a bug in trace.py that resulted in loosing the nameAlexander Belopolsky2010-07-213-7/+7
| | | | of the script being traced. Patch by Eli Bendersky.
* Issue #5395: check that array.fromfile() re-raises an IOError instead of ↵Antoine Pitrou2010-07-211-0/+11
| | | | | | | replacing it with EOFError. (this is only an added test, but 2.x will get a fix too)
* Remove outdated mention of deprecated functions in the string module - they ↵Antoine Pitrou2010-07-211-7/+7
| | | | have been removed in 3.x.
* Apply patch from Ray Allen for issue 9296Doug Hellmann2010-07-212-1/+10
|
* Minor clarification about importlib.abc.SourceLoader.get_filename.Brett Cannon2010-07-211-1/+1
|
* Fix #9316. if/is grammar corrections.Brian Curtin2010-07-211-3/+3
|
* revert unintended changesBenjamin Peterson2010-07-207-31/+11
|
* move test_trace.py so as not to conflict with future tests for the trace moduleBenjamin Peterson2010-07-208-11/+31
|
* Issue #9282: Fixed --listfuncs option of trace.py. Thanks EliAlexander Belopolsky2010-07-203-1/+6
| | | | Bendersky for the patch.
* Without this patch the value of sysconfig.get_config_var('LDSHARED')Ronald Oussoren2010-07-201-7/+27
| | | | | | | | | | | | | | is wrong when PY_LDFLAGS is not empty. The bug was caused by LDSHARED getting expanded *before* sysconfig renamed PY_LDSHARED (and simular values) to names without a PY_ prefix. The patch tries to maintain the intended behaviour of allowing users to set LDFLAGS in the environment and have that affect the build. Without this patch a universal build on OSX cannot build universal (fat binary) extensions.
* Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / inGregory P. Smith2010-07-193-35/+47
| | | | the parameters. (This is jjlee's issue3704.patch ported to py3k)
* Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError ↵Senthil Kumaran2010-07-192-0/+7
| | | | for None.
* Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.Stefan Krah2010-07-192-1/+2
|
* Issue #9265: Incorrect name passed as arg[0] when shell=TrueStefan Krah2010-07-192-0/+21
| | | | and executable specified.
* This patch adds a testcase that demonstrates a problemRonald Oussoren2010-07-191-0/+6
| | | | | | | | | with the expansion of LDSHARED when accessing that value through sysconfig. The problem is probably caused by the 9189. A fix will follow shortly.
* Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wideStefan Krah2010-07-191-6/+1
| | | | | | | | | | | | | signed/unsigned chars or on integers directly derived from those. In all cases, it could be replaced by a simple cast to (unsigned char). Reasons for the change: a) Make the comment more explicit. b) If char is unsigned, the cast is optimized away. c) If char is unsigned, gcc emits spurious "array subscript has type 'char'" warnings.
* Clarification. Yay importlib!Georg Brandl2010-07-191-2/+5
|
* pydoc.pager does not promise to use $PAGER.Georg Brandl2010-07-192-5/+4
|
* Remove temporary debugging code.Mark Dickinson2010-07-192-60/+1
|
* Clarify :option: description.Georg Brandl2010-07-191-2/+3
|
* Clarify.Georg Brandl2010-07-191-2/+2
|
* Document the extra epoll flagsJean-Paul Calderone2010-07-181-5/+5
|
* There is no method named "register(fd, eventmask)"; fix markup to just ↵Jean-Paul Calderone2010-07-181-1/+1
| | | | indicate this is code.
* Add configure check for a bug with gcc soft floating-point and subnormals, ↵Mark Dickinson2010-07-182-1/+60
| | | | to help debug issue 8265.
* nest method and attribute docBenjamin Peterson2010-07-181-15/+16
|
* use classmethodBenjamin Peterson2010-07-181-1/+1
|
* #9110: update to ContextDecorator doc.Georg Brandl2010-07-181-13/+32
|
* #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync ↵Georg Brandl2010-07-185-337/+403
| | | | this and the pdb docs, introduce a new directive for pdb commands and a role to link to them.
* Clarify Misc/NEWS entry.Mark Dickinson2010-07-181-2/+2
|
* Misc/NEWS entry for r82941.Mark Dickinson2010-07-181-0/+5
|
* Issue #9277: Struct module: standard bool packing was incorrect ifMark Dickinson2010-07-181-2/+2
| | | | char is unsigned. Thanks Stefan Krah for the patch.
* Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.xAlexander Belopolsky2010-07-174-40/+91
| | | | python when they contain instances of old-style classes.
* sharedinstall should depend on sharedmods #9280Benjamin Peterson2010-07-172-1/+3
|
* Issue #9268: Add annotation option to pickletools.disAlexander Belopolsky2010-07-173-13/+55
|
* Issue #7384: On Gentoo, libreadline.so is a "fake library", so ldd fails.Stefan Krah2010-07-171-12/+13
| | | | In that case, do not attempt to parse stderr output.
* #1555570: correctly handle a \r\n that is split by the read buffer.R. David Murray2010-07-173-0/+40
| | | | Patch and test by Tony Nelson.
* Add comma grouping to max result so it's easier to read.Brett Cannon2010-07-161-1/+1
|
* Fix possible failure in pickling tests due to different instantiationsAntoine Pitrou2010-07-161-0/+10
| | | | of the random module being around.
* Add benchmarks for importing just source w/o writing bytecode, importing sourceBrett Cannon2010-07-161-14/+57
| | | | | while writing bytecode, and importing bytecode with source existing (don't care about sourceless imports).
* Corrected TUPLE<N> opcodes' docs.Alexander Belopolsky2010-07-161-8/+11
|
* Touch up comments and code along with outputting what the unit of measure is.Brett Cannon2010-07-151-7/+10
|
* Fix issue9132 - Documentation for comparing dictionaries is out of dateSenthil Kumaran2010-07-141-12/+3
|
* Fix a mistake, https proxy shoud be https://Senthil Kumaran2010-07-141-1/+1
|
* Fix: Issue6853 - Get HTTPS system proxy in Windows.Senthil Kumaran2010-07-141-0/+1
|
* PEP 8 conformance: class_ -> clsAlexander Belopolsky2010-07-141-3/+3
|
* Issue #9251: test_threaded_import didn't fail when run through regrtestAntoine Pitrou2010-07-142-55/+53
| | | | if the import lock was disabled.
* Fix Issue5842 - Moving the tests out of urllib.parse moduleSenthil Kumaran2010-07-142-64/+32
|
* High byte is the exit status.Stefan Krah2010-07-141-1/+1
|