Alexander Belopolsky
3f8ecab589
Issue #9323 : Fixed a bug in trace.py that resulted in loosing the name
...
of the script being traced. Patch by Eli Bendersky.
2010-07-21 17:43:42 +00:00
Antoine Pitrou
8cb6dbf1b9
Issue #5395 : check that array.fromfile() re-raises an IOError instead of replacing it
...
with EOFError.
(this is only an added test, but 2.x will get a fix too)
2010-07-21 16:41:31 +00:00
Antoine Pitrou
de5b02430b
Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x.
2010-07-21 15:54:48 +00:00
Doug Hellmann
1c524754f6
Apply patch from Ray Allen for issue 9296
2010-07-21 12:29:04 +00:00
Brett Cannon
6dfbff3ff3
Minor clarification about importlib.abc.SourceLoader.get_filename.
2010-07-21 09:48:31 +00:00
Brian Curtin
3283973949
Fix #9316 . if/is grammar corrections.
2010-07-21 01:44:19 +00:00
Benjamin Peterson
20f9c3c50f
revert unintended changes
2010-07-20 22:39:34 +00:00
Benjamin Peterson
013783c529
move test_trace.py so as not to conflict with future tests for the trace module
2010-07-20 22:37:19 +00:00
Alexander Belopolsky
533a167a71
Issue #9282 : Fixed --listfuncs option of trace.py. Thanks Eli
...
Bendersky for the patch.
2010-07-20 19:55:18 +00:00
Ronald Oussoren
d21886cea4
Without this patch the value of sysconfig.get_config_var('LDSHARED')
...
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.
2010-07-20 16:07:10 +00:00
Gregory P. Smith
41e6c3df8b
Fixes Issue #3704 : http.cookiejar was not properly handling URLs with a / in
...
the parameters. (This is jjlee's issue3704.patch ported to py3k)
2010-07-19 23:17:22 +00:00
Senthil Kumaran
79e17f6f66
Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None.
2010-07-19 18:17:19 +00:00
Stefan Krah
99212f61db
Sub-issue of #9036 : Fix incorrect use of Py_CHARMASK.
2010-07-19 17:58:26 +00:00
Stefan Krah
9542cc6eb5
Issue #9265 : Incorrect name passed as arg[0] when shell=True
...
and executable specified.
2010-07-19 14:20:53 +00:00
Ronald Oussoren
f4ebe2e8a0
This patch adds a testcase that demonstrates a problem
...
with the expansion of LDSHARED when accessing that value
through sysconfig.
The problem is probably caused by the 9189.
A fix will follow shortly.
2010-07-19 13:00:36 +00:00
Stefan Krah
36d2e67db9
Issue #9036 : Throughout the code base, Py_CHARMASK is used on 8-bit wide
...
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.
2010-07-19 12:36:57 +00:00
Georg Brandl
067425520e
Clarification. Yay importlib!
2010-07-19 11:28:05 +00:00
Georg Brandl
55353ca6dc
pydoc.pager does not promise to use $PAGER.
2010-07-19 08:02:46 +00:00
Mark Dickinson
9cec307a11
Remove temporary debugging code.
2010-07-19 07:31:40 +00:00
Georg Brandl
a5ed401688
Clarify :option: description.
2010-07-19 06:57:52 +00:00
Georg Brandl
70f355d13e
Clarify.
2010-07-19 06:52:35 +00:00
Jean-Paul Calderone
7f54dce9bd
Document the extra epoll flags
2010-07-18 16:30:31 +00:00
Jean-Paul Calderone
7f94f392a0
There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code.
2010-07-18 16:13:27 +00:00
Mark Dickinson
c95111995b
Add configure check for a bug with gcc soft floating-point and subnormals, to help debug issue 8265.
2010-07-18 16:01:36 +00:00
Benjamin Peterson
d319ad5c1a
nest method and attribute doc
2010-07-18 14:27:02 +00:00
Benjamin Peterson
0b9fb808a0
use classmethod
2010-07-18 14:23:36 +00:00
Georg Brandl
86e78d1f2d
#9110 : update to ContextDecorator doc.
2010-07-18 13:43:32 +00:00
Georg Brandl
02053ee3b9
#9279 : remove the pdb.doc file, put its contents in pdb.__doc__. Also sync this and the pdb docs, introduce a new directive for pdb commands and a role to link to them.
2010-07-18 10:11:03 +00:00
Mark Dickinson
1b3c262027
Clarify Misc/NEWS entry.
2010-07-18 08:03:10 +00:00
Mark Dickinson
e26660f9f2
Misc/NEWS entry for r82941.
2010-07-18 07:48:20 +00:00
Mark Dickinson
eff5d8594b
Issue #9277 : Struct module: standard bool packing was incorrect if
...
char is unsigned. Thanks Stefan Krah for the patch.
2010-07-18 07:29:02 +00:00
Alexander Belopolsky
d92f04062a
Issue #5180 : Fixed a bug that prevented loading 2.x pickles in 3.x
...
python when they contain instances of old-style classes.
2010-07-17 22:50:45 +00:00
Benjamin Peterson
bbda0c5fbc
sharedinstall should depend on sharedmods #9280
2010-07-17 20:39:23 +00:00
Alexander Belopolsky
929d384058
Issue #9268 : Add annotation option to pickletools.dis
2010-07-17 15:51:21 +00:00
Stefan Krah
f4e7a35d64
Issue #7384 : On Gentoo, libreadline.so is a "fake library", so ldd fails.
...
In that case, do not attempt to parse stderr output.
2010-07-17 11:46:52 +00:00
R. David Murray
45bf773f60
#1555570 : correctly handle a \r\n that is split by the read buffer.
...
Patch and test by Tony Nelson.
2010-07-17 01:19:57 +00:00
Brett Cannon
cbe1a4e28f
Add comma grouping to max result so it's easier to read.
2010-07-16 19:26:23 +00:00
Antoine Pitrou
448acd0a3f
Fix possible failure in pickling tests due to different instantiations
...
of the random module being around.
2010-07-16 19:10:38 +00:00
Brett Cannon
3b0a19eaba
Add benchmarks for importing just source w/o writing bytecode, importing source
...
while writing bytecode, and importing bytecode with source existing (don't care
about sourceless imports).
2010-07-16 19:04:29 +00:00
Alexander Belopolsky
44c2ffd38f
Corrected TUPLE<N> opcodes' docs.
2010-07-16 14:39:45 +00:00
Brett Cannon
7b9bcb8411
Touch up comments and code along with outputting what the unit of measure is.
2010-07-15 06:24:04 +00:00
Senthil Kumaran
0736767fdf
Fix issue9132 - Documentation for comparing dictionaries is out of date
2010-07-14 20:30:02 +00:00
Senthil Kumaran
04f31b8ae6
Fix a mistake, https proxy shoud be https://
2010-07-14 20:10:52 +00:00
Senthil Kumaran
e4004a653c
Fix: Issue6853 - Get HTTPS system proxy in Windows.
2010-07-14 19:15:23 +00:00
Alexander Belopolsky
4988d7a375
PEP 8 conformance: class_ -> cls
2010-07-14 13:46:57 +00:00
Antoine Pitrou
1f9dea0b5f
Issue #9251 : test_threaded_import didn't fail when run through regrtest
...
if the import lock was disabled.
2010-07-14 11:52:38 +00:00
Senthil Kumaran
aa69d4d00f
Fix Issue5842 - Moving the tests out of urllib.parse module
2010-07-14 10:21:22 +00:00
Stefan Krah
fc9e08de3a
High byte is the exit status.
2010-07-14 10:16:11 +00:00
Georg Brandl
b639c14c32
#9235 : fix missing import of sys.
2010-07-14 08:54:40 +00:00
Georg Brandl
b0eb5da018
Remove unused code that would raise a NameError.
2010-07-14 08:53:36 +00:00