]> granicus.if.org Git - python/log
python
14 years ago#7637: fix a grammar error; simplify a sentence
Andrew M. Kuchling [Mon, 26 Jul 2010 12:54:02 +0000 (12:54 +0000)]
#7637: fix a grammar error; simplify a sentence

14 years agoAdd Brian Quinlan.
Georg Brandl [Mon, 26 Jul 2010 09:33:12 +0000 (09:33 +0000)]
Add Brian Quinlan.

14 years ago#9381: fix markup.
Georg Brandl [Mon, 26 Jul 2010 08:51:42 +0000 (08:51 +0000)]
#9381: fix markup.

14 years agoMake python version of fromtimestamp behave more like C.
Alexander Belopolsky [Mon, 26 Jul 2010 02:36:41 +0000 (02:36 +0000)]
Make python version of fromtimestamp behave more like C.

14 years agoAdd note about #7113 and add Łukasz Langa to ACKS
Brian Curtin [Mon, 26 Jul 2010 02:36:32 +0000 (02:36 +0000)]
Add note about #7113 and add Łukasz Langa to ACKS

14 years agoFix #7113. Patch by Łukasz Langa.
Brian Curtin [Mon, 26 Jul 2010 00:27:10 +0000 (00:27 +0000)]
Fix #7113. Patch by Łukasz Langa.

Changes include using a list of lines instead of patching together using
string interpolation, and a multi-line value test cases.

14 years ago#777884: make .normalize() do nothing for childless nodes, instead of raising an...
Andrew M. Kuchling [Sun, 25 Jul 2010 23:38:47 +0000 (23:38 +0000)]
#777884: make .normalize() do nothing for childless nodes, instead of raising an exception

14 years ago#7637: clarify description of encoding parameter
Andrew M. Kuchling [Sun, 25 Jul 2010 23:23:30 +0000 (23:23 +0000)]
#7637: clarify description of encoding parameter

14 years agoIssue #4686 - add .args to exceptions in the configparsermodule
Michael Foord [Sun, 25 Jul 2010 23:09:25 +0000 (23:09 +0000)]
Issue #4686 - add .args to exceptions in the configparsermodule

14 years ago#1495229: update the type names used by the XML DOM mapping
Andrew M. Kuchling [Sun, 25 Jul 2010 22:57:12 +0000 (22:57 +0000)]
#1495229: update the type names used by the XML DOM mapping

14 years agoCorrected comments on where settrace and setprofile are tested.
Alexander Belopolsky [Sun, 25 Jul 2010 15:05:42 +0000 (15:05 +0000)]
Corrected comments on where settrace and setprofile are tested.

14 years agoIssue #9315: Renamed test_trace to test_sys_settrace and
Alexander Belopolsky [Sun, 25 Jul 2010 15:02:55 +0000 (15:02 +0000)]
Issue #9315: Renamed test_trace to test_sys_settrace and
test_profilehooks to test_sys_setprofile so that test_trace can be
used for testing the trace module and for naming consistency.

14 years agoIssue #9315: Revert r83005 before renaming test_trace to
Alexander Belopolsky [Sun, 25 Jul 2010 14:58:54 +0000 (14:58 +0000)]
Issue #9315: Revert r83005 before renaming test_trace to
test_sys_settrace and test_profilehooks to test_sys_setprofile in all
three branches.

14 years agoFix for issue 9367: the test code for os.getgroups
Ronald Oussoren [Sat, 24 Jul 2010 14:15:19 +0000 (14:15 +0000)]
Fix for issue 9367: the test code for os.getgroups
assumes that the result of getgroups and the output
of the id(1) command return groups in the same
order.  That assumption is both fragile and false.

14 years agoPut listdir default argument into declaration.
Martin v. Löwis [Sat, 24 Jul 2010 10:09:11 +0000 (10:09 +0000)]
Put listdir default argument into declaration.

14 years agoImplementation for issue 4184
Richard Jones [Sat, 24 Jul 2010 09:51:40 +0000 (09:51 +0000)]
Implementation for issue 4184

Changes the previously private attributes to make them public, increasing the potential for extending the library in user code. Backward-compatible and documented.

14 years ago#9032: XML-RPC client: Transport.request() retries on EPIPE error
Victor Stinner [Sat, 24 Jul 2010 02:24:55 +0000 (02:24 +0000)]
#9032: XML-RPC client: Transport.request() retries on EPIPE error

The EPIPE error occurs when the server closes the socket and the client sends a
"big" XML-RPC request (I don't know exactly the size threshold).

request() just have to ignore the error because single_request() closes the
socket on error, and so the next call to single_request() will open a new
socket.

Remove also a comment in the HTTP client because it's now wrong: see r70643
and issue #5542.

14 years agoIssue #4629: getopt raises an error if an argument ends with = whereas getopt
Victor Stinner [Sat, 24 Jul 2010 00:49:20 +0000 (00:49 +0000)]
Issue #4629: getopt raises an error if an argument ends with = whereas getopt
doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long
options).

14 years agoUse _datetime docstring if _datetime is available.
Alexander Belopolsky [Fri, 23 Jul 2010 20:03:53 +0000 (20:03 +0000)]
Use _datetime docstring if _datetime is available.

14 years agoIssue #7989: Added pure python implementation of the datetime module.
Alexander Belopolsky [Fri, 23 Jul 2010 19:25:47 +0000 (19:25 +0000)]
Issue #7989: Added pure python implementation of the datetime module.

14 years agoAdd Brian Brazil.
Brett Cannon [Fri, 23 Jul 2010 16:58:57 +0000 (16:58 +0000)]
Add Brian Brazil.

14 years agoMention in the fnmatch docs that meta-characters in translate cannot be quoted.
Brett Cannon [Fri, 23 Jul 2010 16:58:21 +0000 (16:58 +0000)]
Mention in the fnmatch docs that meta-characters in translate cannot be quoted.

Closes issue 9358. Thanks to Brian Brazil for the patch.

14 years agoAdd queue tests for empty, full, put_nowait, and get_nowait.
Brett Cannon [Fri, 23 Jul 2010 16:56:21 +0000 (16:56 +0000)]
Add queue tests for empty, full, put_nowait, and get_nowait.

Closes issue 9357. Thanks to Brian Brazil for the patch.

14 years agoUpdate to 1.0.
Georg Brandl [Fri, 23 Jul 2010 16:55:42 +0000 (16:55 +0000)]
Update to 1.0.

14 years agoFix some markup glitches.
Georg Brandl [Fri, 23 Jul 2010 16:55:26 +0000 (16:55 +0000)]
Fix some markup glitches.

14 years ago#9359: fix typo. Thanks to Piotr Kasprzyk for the patch.
Ezio Melotti [Fri, 23 Jul 2010 16:48:22 +0000 (16:48 +0000)]
#9359: fix typo. Thanks to Piotr Kasprzyk for the patch.

14 years agoTab test_repr_daemon over so it's included in ThreadTests.
Brian Curtin [Fri, 23 Jul 2010 16:30:10 +0000 (16:30 +0000)]
Tab test_repr_daemon over so it's included in ThreadTests.
Noticed by Amaury.

14 years agoAdd tests for fnmatch.filter and translate.
Brett Cannon [Fri, 23 Jul 2010 16:23:13 +0000 (16:23 +0000)]
Add tests for fnmatch.filter and translate.

Partially closes issue 9356. Thanks to Brian Brazil for the patch.

14 years agoMake fnmatch be more PEP 8 compliant.
Brett Cannon [Fri, 23 Jul 2010 16:22:25 +0000 (16:22 +0000)]
Make fnmatch be more PEP 8 compliant.

Partially closes issue 9356. Thanks to Brian Brazil for the patch.

14 years agoNew tests for smtpd module. Has full coverage for SMTPChannel and SMTPServer.
Richard Jones [Fri, 23 Jul 2010 16:20:40 +0000 (16:20 +0000)]
New tests for smtpd module. Has full coverage for SMTPChannel and SMTPServer.

14 years agoEnsure that sys.prefix can reliably be found
Ronald Oussoren [Fri, 23 Jul 2010 16:05:35 +0000 (16:05 +0000)]
Ensure that sys.prefix can reliably be found
on OSX. This fixes a small issue that was exposed
by running test_subprocess through regrtest (and
hence in a subdirectory).

Without this patch running python.exe from the
build tree will fail when these tree conditions
are true:
1) the CWD is not the root of build tree
2) python.exe is found through $PATH
3) the framework is not yet installed

14 years agoAdd more tests for the threading.Thread.repr.
Brett Cannon [Fri, 23 Jul 2010 15:50:52 +0000 (15:50 +0000)]
Add more tests for the threading.Thread.repr.

Partially closes issue 9346. Thanks to Brian Brazil for the patch.

14 years agoRip out old testing code that was inlined in threading.
Brett Cannon [Fri, 23 Jul 2010 15:50:02 +0000 (15:50 +0000)]
Rip out old testing code that was inlined in threading.

Partially closes issue 9346. Thanks Brian Brazil for the patch.

14 years agoRename some macros in the sha1 module to no longer conflict with termios.h.
Brett Cannon [Fri, 23 Jul 2010 15:43:14 +0000 (15:43 +0000)]
Rename some macros in the sha1 module to no longer conflict with termios.h.

14 years agoStop shadowing a test class.
Brett Cannon [Fri, 23 Jul 2010 14:45:19 +0000 (14:45 +0000)]
Stop shadowing a test class.

14 years agoExplicitly test relative imports by reusing importlib tests.
Brett Cannon [Fri, 23 Jul 2010 14:03:16 +0000 (14:03 +0000)]
Explicitly test relative imports by reusing importlib tests.

Closes issue 8392. Thanks Virgil Dupras for the initial patch.

14 years agoTest calendar.monthrange.
Brett Cannon [Fri, 23 Jul 2010 13:54:14 +0000 (13:54 +0000)]
Test calendar.monthrange.

Closes issue 9342. Thanks John Chandler for the patch.

14 years agoThis fixes issue7900 by adding code that deals
Ronald Oussoren [Fri, 23 Jul 2010 13:53:51 +0000 (13:53 +0000)]
This fixes issue7900 by adding code that deals
with the fact that getgroups(2) might return
more that MAX_GROUPS on OSX.

See the issue (and python-dev archives) for the
gory details. Summarized: OSX behaves rather oddly
and Apple says this is intentional.

14 years agoClarify the wording for threading.is_alive() to not suggest something is
Brett Cannon [Fri, 23 Jul 2010 12:26:35 +0000 (12:26 +0000)]
Clarify the wording for threading.is_alive() to not suggest something is
"roughly" done.

Closes issue 9339. Thanks Brian Brazil for the patch.

14 years agoIssue #6095: Make directory argument to os.listdir optional.
Martin v. Löwis [Fri, 23 Jul 2010 12:16:41 +0000 (12:16 +0000)]
Issue #6095: Make directory argument to os.listdir optional.
Patch by Virgil Dupras.

14 years agoFix for issue 7895. Avoid crashing the interpreter
Ronald Oussoren [Fri, 23 Jul 2010 11:54:59 +0000 (11:54 +0000)]
Fix for issue 7895. Avoid crashing the interpreter
when calling platform.mac_ver after calling os.fork by
reading from a system configuration file instead of
using OSX APIs.

14 years agoMinor tweak of test_osx_env to
Ronald Oussoren [Fri, 23 Jul 2010 11:48:36 +0000 (11:48 +0000)]
Minor tweak of test_osx_env to
avoid failing when the framework is not
yet installed.

14 years agoDocument the fact that the 'test' package is meant only for use by Python
Brett Cannon [Fri, 23 Jul 2010 11:31:31 +0000 (11:31 +0000)]
Document the fact that the 'test' package is meant only for use by Python
itself and not by others.

Closes issue 9255.

14 years agoWorkaround for issue 4047: in some configurations of
Ronald Oussoren [Fri, 23 Jul 2010 09:50:05 +0000 (09:50 +0000)]
Workaround for issue 4047: in some configurations of
the Crash Reporter on OSX test_subprocess will trigger
the reporter.

This patch prints a warning when the Crash Reporter will
get triggered intentionally, which should avoid confusing
people.

14 years agoEnsure that the Makefile variable expansion
Ronald Oussoren [Fri, 23 Jul 2010 09:43:17 +0000 (09:43 +0000)]
Ensure that the Makefile variable expansion
in distutils.sysconfig matches that in the
toplevel sysconfig module.

Without this patch universal builds on OSX are
broken.

Als add a test that checks that the two version
of get_config_vars agree on important values.

14 years agoUse augassign.
Georg Brandl [Fri, 23 Jul 2010 08:46:35 +0000 (08:46 +0000)]
Use augassign.

14 years agoSkip this test as it doesn't apply to Windows. It was added for
Brian Curtin [Thu, 22 Jul 2010 15:38:28 +0000 (15:38 +0000)]
Skip this test as it doesn't apply to Windows. It was added for
#9189 for some GCC flags.

14 years agoreverted distutils its 3.1 state. All new work is now happening in disutils2, and...
Tarek Ziadé [Thu, 22 Jul 2010 12:50:05 +0000 (12:50 +0000)]
reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen.

14 years agoAdd importlib benchmarks which try to be "realistic" by importing the decimal
Brett Cannon [Thu, 22 Jul 2010 07:40:56 +0000 (07:40 +0000)]
Add importlib benchmarks which try to be "realistic" by importing the decimal
module which is the largest module in the stdlib.

14 years agoIssue #9323: Fixed a bug in trace.py that resulted in loosing the name
Alexander Belopolsky [Wed, 21 Jul 2010 17:43:42 +0000 (17:43 +0000)]
Issue #9323: Fixed a bug in trace.py that resulted in loosing the name
of the script being traced.  Patch by Eli Bendersky.

14 years agoIssue #5395: check that array.fromfile() re-raises an IOError instead of replacing it
Antoine Pitrou [Wed, 21 Jul 2010 16:41:31 +0000 (16:41 +0000)]
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)

14 years agoRemove outdated mention of deprecated functions in the string module - they have...
Antoine Pitrou [Wed, 21 Jul 2010 15:54:48 +0000 (15:54 +0000)]
Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x.

14 years agoApply patch from Ray Allen for issue 9296
Doug Hellmann [Wed, 21 Jul 2010 12:29:04 +0000 (12:29 +0000)]
Apply patch from Ray Allen for issue 9296

14 years agoMinor clarification about importlib.abc.SourceLoader.get_filename.
Brett Cannon [Wed, 21 Jul 2010 09:48:31 +0000 (09:48 +0000)]
Minor clarification about importlib.abc.SourceLoader.get_filename.

14 years agoFix #9316. if/is grammar corrections.
Brian Curtin [Wed, 21 Jul 2010 01:44:19 +0000 (01:44 +0000)]
Fix #9316. if/is grammar corrections.

14 years agorevert unintended changes
Benjamin Peterson [Tue, 20 Jul 2010 22:39:34 +0000 (22:39 +0000)]
revert unintended changes

14 years agomove test_trace.py so as not to conflict with future tests for the trace module
Benjamin Peterson [Tue, 20 Jul 2010 22:37:19 +0000 (22:37 +0000)]
move test_trace.py so as not to conflict with future tests for the trace module

14 years agoIssue #9282: Fixed --listfuncs option of trace.py. Thanks Eli
Alexander Belopolsky [Tue, 20 Jul 2010 19:55:18 +0000 (19:55 +0000)]
Issue #9282: Fixed --listfuncs option of trace.py.  Thanks Eli
Bendersky for the patch.

14 years agoWithout this patch the value of sysconfig.get_config_var('LDSHARED')
Ronald Oussoren [Tue, 20 Jul 2010 16:07:10 +0000 (16:07 +0000)]
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.

14 years agoFixes Issue #3704: http.cookiejar was not properly handling URLs with a / in
Gregory P. Smith [Mon, 19 Jul 2010 23:17:22 +0000 (23:17 +0000)]
Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in
the parameters.  (This is jjlee's issue3704.patch ported to py3k)

14 years agoFix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None.
Senthil Kumaran [Mon, 19 Jul 2010 18:17:19 +0000 (18:17 +0000)]
Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError for None.

14 years agoSub-issue of #9036: Fix incorrect use of Py_CHARMASK.
Stefan Krah [Mon, 19 Jul 2010 17:58:26 +0000 (17:58 +0000)]
Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.

14 years agoIssue #9265: Incorrect name passed as arg[0] when shell=True
Stefan Krah [Mon, 19 Jul 2010 14:20:53 +0000 (14:20 +0000)]
Issue #9265: Incorrect name passed as arg[0] when shell=True
and executable specified.

14 years agoThis patch adds a testcase that demonstrates a problem
Ronald Oussoren [Mon, 19 Jul 2010 13:00:36 +0000 (13:00 +0000)]
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.

14 years agoIssue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide
Stefan Krah [Mon, 19 Jul 2010 12:36:57 +0000 (12:36 +0000)]
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.

14 years agoClarification. Yay importlib!
Georg Brandl [Mon, 19 Jul 2010 11:28:05 +0000 (11:28 +0000)]
Clarification.  Yay importlib!

14 years agopydoc.pager does not promise to use $PAGER.
Georg Brandl [Mon, 19 Jul 2010 08:02:46 +0000 (08:02 +0000)]
pydoc.pager does not promise to use $PAGER.

14 years agoRemove temporary debugging code.
Mark Dickinson [Mon, 19 Jul 2010 07:31:40 +0000 (07:31 +0000)]
Remove temporary debugging code.

14 years agoClarify :option: description.
Georg Brandl [Mon, 19 Jul 2010 06:57:52 +0000 (06:57 +0000)]
Clarify :option: description.

14 years agoClarify.
Georg Brandl [Mon, 19 Jul 2010 06:52:35 +0000 (06:52 +0000)]
Clarify.

14 years agoDocument the extra epoll flags
Jean-Paul Calderone [Sun, 18 Jul 2010 16:30:31 +0000 (16:30 +0000)]
Document the extra epoll flags

14 years agoThere is no method named "register(fd, eventmask)"; fix markup to just indicate this...
Jean-Paul Calderone [Sun, 18 Jul 2010 16:13:27 +0000 (16:13 +0000)]
There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code.

14 years agoAdd configure check for a bug with gcc soft floating-point and subnormals, to help...
Mark Dickinson [Sun, 18 Jul 2010 16:01:36 +0000 (16:01 +0000)]
Add configure check for a bug with gcc soft floating-point and subnormals, to help debug issue 8265.

14 years agonest method and attribute doc
Benjamin Peterson [Sun, 18 Jul 2010 14:27:02 +0000 (14:27 +0000)]
nest method and attribute doc

14 years agouse classmethod
Benjamin Peterson [Sun, 18 Jul 2010 14:23:36 +0000 (14:23 +0000)]
use classmethod

14 years ago#9110: update to ContextDecorator doc.
Georg Brandl [Sun, 18 Jul 2010 13:43:32 +0000 (13:43 +0000)]
#9110: update to ContextDecorator doc.

14 years ago#9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync this...
Georg Brandl [Sun, 18 Jul 2010 10:11:03 +0000 (10:11 +0000)]
#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.

14 years agoClarify Misc/NEWS entry.
Mark Dickinson [Sun, 18 Jul 2010 08:03:10 +0000 (08:03 +0000)]
Clarify Misc/NEWS entry.

14 years agoMisc/NEWS entry for r82941.
Mark Dickinson [Sun, 18 Jul 2010 07:48:20 +0000 (07:48 +0000)]
Misc/NEWS entry for r82941.

14 years agoIssue #9277: Struct module: standard bool packing was incorrect if
Mark Dickinson [Sun, 18 Jul 2010 07:29:02 +0000 (07:29 +0000)]
Issue #9277: Struct module: standard bool packing was incorrect if
char is unsigned.  Thanks Stefan Krah for the patch.

14 years agoIssue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
Alexander Belopolsky [Sat, 17 Jul 2010 22:50:45 +0000 (22:50 +0000)]
Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
python when they contain instances of old-style classes.

14 years agosharedinstall should depend on sharedmods #9280
Benjamin Peterson [Sat, 17 Jul 2010 20:39:23 +0000 (20:39 +0000)]
sharedinstall should depend on sharedmods #9280

14 years agoIssue #9268: Add annotation option to pickletools.dis
Alexander Belopolsky [Sat, 17 Jul 2010 15:51:21 +0000 (15:51 +0000)]
Issue #9268: Add annotation option to pickletools.dis

14 years agoIssue #7384: On Gentoo, libreadline.so is a "fake library", so ldd fails.
Stefan Krah [Sat, 17 Jul 2010 11:46:52 +0000 (11:46 +0000)]
Issue #7384: On Gentoo, libreadline.so is a "fake library", so ldd fails.
In that case, do not attempt to parse stderr output.

14 years ago#1555570: correctly handle a \r\n that is split by the read buffer.
R. David Murray [Sat, 17 Jul 2010 01:19:57 +0000 (01:19 +0000)]
#1555570: correctly handle a \r\n that is split by the read buffer.

Patch and test by Tony Nelson.

14 years agoAdd comma grouping to max result so it's easier to read.
Brett Cannon [Fri, 16 Jul 2010 19:26:23 +0000 (19:26 +0000)]
Add comma grouping to max result so it's easier to read.

14 years agoFix possible failure in pickling tests due to different instantiations
Antoine Pitrou [Fri, 16 Jul 2010 19:10:38 +0000 (19:10 +0000)]
Fix possible failure in pickling tests due to different instantiations
of the random module being around.

14 years agoAdd benchmarks for importing just source w/o writing bytecode, importing source
Brett Cannon [Fri, 16 Jul 2010 19:04:29 +0000 (19:04 +0000)]
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).

14 years agoCorrected TUPLE<N> opcodes' docs.
Alexander Belopolsky [Fri, 16 Jul 2010 14:39:45 +0000 (14:39 +0000)]
Corrected TUPLE<N> opcodes' docs.

14 years agoTouch up comments and code along with outputting what the unit of measure is.
Brett Cannon [Thu, 15 Jul 2010 06:24:04 +0000 (06:24 +0000)]
Touch up comments and code along with outputting what the unit of measure is.

14 years agoFix issue9132 - Documentation for comparing dictionaries is out of date
Senthil Kumaran [Wed, 14 Jul 2010 20:30:02 +0000 (20:30 +0000)]
Fix issue9132 - Documentation for comparing dictionaries is out of date

14 years agoFix a mistake, https proxy shoud be https://
Senthil Kumaran [Wed, 14 Jul 2010 20:10:52 +0000 (20:10 +0000)]
Fix a mistake, https proxy shoud be https://

14 years agoFix: Issue6853 - Get HTTPS system proxy in Windows.
Senthil Kumaran [Wed, 14 Jul 2010 19:15:23 +0000 (19:15 +0000)]
Fix: Issue6853 - Get HTTPS system proxy in Windows.

14 years agoPEP 8 conformance: class_ -> cls
Alexander Belopolsky [Wed, 14 Jul 2010 13:46:57 +0000 (13:46 +0000)]
PEP 8 conformance: class_ -> cls

14 years agoIssue #9251: test_threaded_import didn't fail when run through regrtest
Antoine Pitrou [Wed, 14 Jul 2010 11:52:38 +0000 (11:52 +0000)]
Issue #9251: test_threaded_import didn't fail when run through regrtest
if the import lock was disabled.

14 years agoFix Issue5842 - Moving the tests out of urllib.parse module
Senthil Kumaran [Wed, 14 Jul 2010 10:21:22 +0000 (10:21 +0000)]
Fix Issue5842 - Moving the tests out of urllib.parse module

14 years agoHigh byte is the exit status.
Stefan Krah [Wed, 14 Jul 2010 10:16:11 +0000 (10:16 +0000)]
High byte is the exit status.

14 years ago#9235: fix missing import of sys.
Georg Brandl [Wed, 14 Jul 2010 08:54:40 +0000 (08:54 +0000)]
#9235: fix missing import of sys.

14 years agoRemove unused code that would raise a NameError.
Georg Brandl [Wed, 14 Jul 2010 08:53:36 +0000 (08:53 +0000)]
Remove unused code that would raise a NameError.

14 years agoRemove XXX from text.
Georg Brandl [Wed, 14 Jul 2010 08:53:18 +0000 (08:53 +0000)]
Remove XXX from text.