]> granicus.if.org Git - python/log
python
14 years agoFix copy-paste error in example.
Georg Brandl [Sun, 17 Oct 2010 10:07:29 +0000 (10:07 +0000)]
Fix copy-paste error in example.

14 years ago#459007: merge info from PC/getpathp.c and using/windows.rst to document the forming...
Georg Brandl [Sun, 17 Oct 2010 10:05:13 +0000 (10:05 +0000)]
#459007: merge info from PC/getpathp.c and using/windows.rst to document the forming of sys.path under Windows.

14 years ago#8968: add actual name of token constants.
Georg Brandl [Sun, 17 Oct 2010 09:46:11 +0000 (09:46 +0000)]
#8968: add actual name of token constants.

14 years agoFix hmac docs: it takes and returns bytes, except for hexdigest().
Georg Brandl [Sun, 17 Oct 2010 09:43:35 +0000 (09:43 +0000)]
Fix hmac docs: it takes and returns bytes, except for hexdigest().

14 years ago#8855: add shelve security warning.
Georg Brandl [Sun, 17 Oct 2010 09:37:54 +0000 (09:37 +0000)]
#8855: add shelve security warning.

14 years ago#8811: small fixes to sqlite3 docs.
Georg Brandl [Sun, 17 Oct 2010 09:33:24 +0000 (09:33 +0000)]
#8811: small fixes to sqlite3 docs.

14 years ago#8686: remove potentially confusing wording that does not add any value.
Georg Brandl [Sun, 17 Oct 2010 09:23:05 +0000 (09:23 +0000)]
#8686: remove potentially confusing wording that does not add any value.

14 years ago#8556: use less confusing mapping key in example.
Georg Brandl [Sun, 17 Oct 2010 09:19:03 +0000 (09:19 +0000)]
#8556: use less confusing mapping key in example.

14 years agoFix compilation warning in _ctypes module on Window
Amaury Forgeot d'Arc [Sun, 17 Oct 2010 08:34:22 +0000 (08:34 +0000)]
Fix compilation warning in _ctypes module on Window

14 years agoOn Windows, remove compilation warnings with the zlib and gzip modules.
Amaury Forgeot d'Arc [Sun, 17 Oct 2010 08:26:13 +0000 (08:26 +0000)]
On Windows, remove compilation warnings with the zlib and gzip modules.

14 years ago#10058: tweak wording about exception returns.
Georg Brandl [Sun, 17 Oct 2010 06:32:59 +0000 (06:32 +0000)]
#10058: tweak wording about exception returns.

14 years agoNote that maxtasksperchild is new in 3.2.
Georg Brandl [Sun, 17 Oct 2010 06:21:59 +0000 (06:21 +0000)]
Note that maxtasksperchild is new in 3.2.

14 years agoAvoid hanging the test on netbsd5.
Gregory P. Smith [Sun, 17 Oct 2010 03:09:12 +0000 (03:09 +0000)]
Avoid hanging the test on netbsd5.

14 years agoskip test_itimer_virtual on NetBSD to prevent the test suite from hanging.
Gregory P. Smith [Sun, 17 Oct 2010 02:57:19 +0000 (02:57 +0000)]
skip test_itimer_virtual on NetBSD to prevent the test suite from hanging.

14 years agoFix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined
Gregory P. Smith [Sun, 17 Oct 2010 02:14:36 +0000 (02:14 +0000)]
Fix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined
as (~0U) on NetBSD which was causing it to appear as -1 when used as
a signed int for _multprocessing.SemLock.SEM_VALUE_MAX.  This works
around the problem by substituting INT_MAX on systems where it appears
negative when used as an int.

14 years agofind_module(): use FS encoding to display the missing __init__ warning
Victor Stinner [Sun, 17 Oct 2010 02:07:09 +0000 (02:07 +0000)]
find_module(): use FS encoding to display the missing __init__ warning

14 years agotest_cmd_line_script: format paths with ascii() instead of repr()
Victor Stinner [Sun, 17 Oct 2010 01:41:09 +0000 (01:41 +0000)]
test_cmd_line_script: format paths with ascii() instead of repr()

Fix the test if the native filesystem encoding is not utf-8 (eg. cp1250 on
Windows).

14 years agouse assertion methods
Benjamin Peterson [Sun, 17 Oct 2010 01:30:26 +0000 (01:30 +0000)]
use assertion methods

14 years agodisable the garbage collector while collecting traces, so that __del__s don't get...
Benjamin Peterson [Sun, 17 Oct 2010 01:29:11 +0000 (01:29 +0000)]
disable the garbage collector while collecting traces, so that __del__s don't get caught

14 years agoremove rather pointless test
Benjamin Peterson [Sun, 17 Oct 2010 01:25:19 +0000 (01:25 +0000)]
remove rather pointless test

14 years ago_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding
Victor Stinner [Sun, 17 Oct 2010 01:24:53 +0000 (01:24 +0000)]
_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding

 * Rename _PyImport_FindExtension() to _PyImport_FindExtensionUnicode():
   the filename becomes a Unicode object instead of byte string
 * Rename _PyImport_FixupExtension() to _PyImport_FixupExtensionUnicode():
   the filename becomes a Unicode object instead of byte string

14 years agoapplying netbsd-wizs-mod.patch from issue5510 -
Gregory P. Smith [Sun, 17 Oct 2010 00:43:10 +0000 (00:43 +0000)]
applying netbsd-wizs-mod.patch from issue5510 -
 fixes for netbsd (and dragonflybsd?)

14 years agofix for netbsd.
Gregory P. Smith [Sun, 17 Oct 2010 00:17:24 +0000 (00:17 +0000)]
fix for netbsd.

14 years agotest_subprocess: use surrogateescape error handler to write shell scripts
Victor Stinner [Sat, 16 Oct 2010 23:46:43 +0000 (23:46 +0000)]
test_subprocess: use surrogateescape error handler to write shell scripts

test_args_string() and test_call_string() create shell scripts including the
path to the Python executable: use surrogateescape to encode paths including
surrogate characters.

14 years agoOops, fix my previous commit (r85583) on calculate_path()
Victor Stinner [Sat, 16 Oct 2010 23:38:07 +0000 (23:38 +0000)]
Oops, fix my previous commit (r85583) on calculate_path()

path value may be changed, so keep a copy in a new variable.

14 years agocalculate_path(): use _Py_char2wchar() to decode the PATH environment variable,
Victor Stinner [Sat, 16 Oct 2010 23:34:22 +0000 (23:34 +0000)]
calculate_path(): use _Py_char2wchar() to decode the PATH environment variable,
to support surrogate characters

14 years agoAdd an optional size argument to _Py_char2wchar()
Victor Stinner [Sat, 16 Oct 2010 23:16:16 +0000 (23:16 +0000)]
Add an optional size argument to _Py_char2wchar()

_Py_char2wchar() callers usually need the result size in characters. Since it's
trivial to compute it in _Py_char2wchar() (O(1) whereas wcslen() is O(n)), add
an option to get it.

14 years ago_Py_wrealpath() uses _Py_char2wchar() to decode the result, to support
Victor Stinner [Sat, 16 Oct 2010 22:55:47 +0000 (22:55 +0000)]
_Py_wrealpath() uses _Py_char2wchar() to decode the result, to support
surrogate characters.

14 years ago_Py_wreadlink(): catch _Py_char2wchar() failure
Victor Stinner [Sat, 16 Oct 2010 22:52:09 +0000 (22:52 +0000)]
_Py_wreadlink(): catch _Py_char2wchar() failure

14 years ago_Py_wreadlink() uses _Py_char2wchar() to decode the result, to support
Victor Stinner [Sat, 16 Oct 2010 22:47:37 +0000 (22:47 +0000)]
_Py_wreadlink() uses _Py_char2wchar() to decode the result, to support
surrogate characters.

14 years agoIssue #10123: Don't use non-ascii filenames in test_doctest tests. Add a
Victor Stinner [Sat, 16 Oct 2010 21:54:59 +0000 (21:54 +0000)]
Issue #10123: Don't use non-ascii filenames in test_doctest tests. Add a
new test specific to unicode (non-ascii name and filename).

14 years agoGet rid of a "unused static function" warning.
Georg Brandl [Sat, 16 Oct 2010 20:33:11 +0000 (20:33 +0000)]
Get rid of a "unused static function" warning.

14 years agoAdded __pycache__ to svn:ignore property
Alexander Belopolsky [Sat, 16 Oct 2010 20:14:24 +0000 (20:14 +0000)]
Added __pycache__ to svn:ignore property

14 years ago#10124: typo fix.
Georg Brandl [Sat, 16 Oct 2010 18:53:08 +0000 (18:53 +0000)]
#10124: typo fix.

14 years ago#10122: typo fix.
Georg Brandl [Sat, 16 Oct 2010 18:51:05 +0000 (18:51 +0000)]
#10122: typo fix.

14 years agoabiflags: alphabetize and versionadded
Barry Warsaw [Sat, 16 Oct 2010 14:17:50 +0000 (14:17 +0000)]
abiflags: alphabetize and versionadded

14 years agoFix ast_error_finish() and err_input(): filename can be NULL
Victor Stinner [Sat, 16 Oct 2010 13:42:53 +0000 (13:42 +0000)]
Fix ast_error_finish() and err_input(): filename can be NULL

Fix my previous commit (r85569).

14 years agoIssue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
Victor Stinner [Sat, 16 Oct 2010 13:14:10 +0000 (13:14 +0000)]
Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
filenames encoded to the filesystem encoding with surrogateescape error handler
(to support undecodable bytes), instead of UTF-8 in strict mode.

14 years agozipimport: catch _PyUnicode_AsString() failure in get_code_from_data()
Victor Stinner [Sat, 16 Oct 2010 11:29:07 +0000 (11:29 +0000)]
zipimport: catch _PyUnicode_AsString() failure in get_code_from_data()

It occurs if the path contains surrogates.

14 years agoFixes issue 10120 (concurrent.futures module is not installed properly), patch by...
Brian Quinlan [Sat, 16 Oct 2010 10:36:11 +0000 (10:36 +0000)]
Fixes issue 10120 (concurrent.futures module is not installed properly), patch by Neil Muller

14 years agoFix incorrect maintainer name
Brian Quinlan [Sat, 16 Oct 2010 10:12:32 +0000 (10:12 +0000)]
Fix incorrect maintainer name

14 years agoAdd bquinlan as the maintainer of concurrent.futures
Brian Quinlan [Sat, 16 Oct 2010 09:55:14 +0000 (09:55 +0000)]
Add bquinlan as the maintainer of concurrent.futures

14 years agodon't identify the toplevel namespace by name #9997
Benjamin Peterson [Sat, 16 Oct 2010 03:45:45 +0000 (03:45 +0000)]
don't identify the toplevel namespace by name #9997

14 years agofix refleak
Benjamin Peterson [Sat, 16 Oct 2010 03:12:39 +0000 (03:12 +0000)]
fix refleak

14 years agoAdd NEWS for issue 9807 part 1.
Barry Warsaw [Sat, 16 Oct 2010 01:20:45 +0000 (01:20 +0000)]
Add NEWS for issue 9807 part 1.

14 years agoFirst (uncontroversial) part of issue 9807.
Barry Warsaw [Sat, 16 Oct 2010 01:04:07 +0000 (01:04 +0000)]
First (uncontroversial) part of issue 9807.

* Expose the build flags to Python as sys.abiflags
* Shared library libpythonX.Y<abiflags>.so
* python-config --abiflags
* Make two distutils tests that failed with --enable-shared (even before this
  patch) succeed.
* Fix a few small style issues.

14 years agorun autoconf
Benjamin Peterson [Fri, 15 Oct 2010 23:14:46 +0000 (23:14 +0000)]
run autoconf

14 years ago#9862: On AIX PIPE_BUF is broken. Make it 512.
R. David Murray [Fri, 15 Oct 2010 23:12:57 +0000 (23:12 +0000)]
#9862: On AIX PIPE_BUF is broken.  Make it 512.

Patch by SĂ©bastien SablĂ©.

14 years agoFix imp_cache_from_source(): Decode make_compiled_pathname() result from the
Victor Stinner [Fri, 15 Oct 2010 22:46:07 +0000 (22:46 +0000)]
Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the
filesystem encoding instead of utf-8.

imp_cache_from_source() encodes the input path to filesystem encoding and this
path is passed to make_compiled_pathname().

14 years agoimp_load_module() uses PyUnicode_FSConverter() to support surrogates in module
Victor Stinner [Fri, 15 Oct 2010 22:43:10 +0000 (22:43 +0000)]
imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module
path

14 years agorevert change in inappropiate branch
Benjamin Peterson [Fri, 15 Oct 2010 21:56:35 +0000 (21:56 +0000)]
revert change in inappropiate branch

14 years agoimp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in
Victor Stinner [Fri, 15 Oct 2010 20:34:32 +0000 (20:34 +0000)]
imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in
module path

14 years ago#10072: assume a bit less knowledge of the FTP protocol in the ftplib docs.
Georg Brandl [Fri, 15 Oct 2010 19:46:19 +0000 (19:46 +0000)]
#10072: assume a bit less knowledge of the FTP protocol in the ftplib docs.

14 years ago#6098: Refrain from claiming DOM level 3 conformance in minidom.
Georg Brandl [Fri, 15 Oct 2010 18:00:35 +0000 (18:00 +0000)]
#6098: Refrain from claiming DOM level 3 conformance in minidom.

14 years ago#5762: fix handling of empty namespace in minidom, which would result in AttributeErr...
Georg Brandl [Fri, 15 Oct 2010 17:58:45 +0000 (17:58 +0000)]
#5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml().

14 years ago#4785: document strict argument of JSONDecoder, plus add object_pairs_hook in the...
Georg Brandl [Fri, 15 Oct 2010 17:03:02 +0000 (17:03 +0000)]
#4785: document strict argument of JSONDecoder, plus add object_pairs_hook in the docstrings.

14 years ago#7790: move table of struct_time members to the actual description of struct_time.
Georg Brandl [Fri, 15 Oct 2010 17:01:15 +0000 (17:01 +0000)]
#7790: move table of struct_time members to the actual description of struct_time.

14 years ago#4968: updates to inspect.is* function docs.
Georg Brandl [Fri, 15 Oct 2010 16:53:24 +0000 (16:53 +0000)]
#4968: updates to inspect.is* function docs.

14 years ago#6798: fix wrong docs for the arguments to several trace events.
Georg Brandl [Fri, 15 Oct 2010 16:42:37 +0000 (16:42 +0000)]
#6798: fix wrong docs for the arguments to several trace events.

14 years agoFix issue references.
Georg Brandl [Fri, 15 Oct 2010 16:42:14 +0000 (16:42 +0000)]
Fix issue references.

14 years ago#7303: add documentation for useful pkgutil functions and classes.
Georg Brandl [Fri, 15 Oct 2010 16:35:46 +0000 (16:35 +0000)]
#7303: add documentation for useful pkgutil functions and classes.

14 years agoIssue #9308: Removed redundant coding cookies. Added tests for
Alexander Belopolsky [Fri, 15 Oct 2010 16:28:20 +0000 (16:28 +0000)]
Issue #9308: Removed redundant coding cookies.  Added tests for
importing encoded modules that do not depend on specific stdlib
modules being encoded in a certain way.

14 years ago#9054: fix crash when using pyexpat with a system expat lib version 2.0.1.
Georg Brandl [Fri, 15 Oct 2010 16:26:08 +0000 (16:26 +0000)]
#9054: fix crash when using pyexpat with a system expat lib version 2.0.1.

14 years agoRemove unused label.
Georg Brandl [Fri, 15 Oct 2010 16:23:54 +0000 (16:23 +0000)]
Remove unused label.

14 years ago#9801: document how list and dict proxies created by Managers behave w.r.t. mutable...
Georg Brandl [Fri, 15 Oct 2010 16:19:43 +0000 (16:19 +0000)]
#9801: document how list and dict proxies created by Managers behave w.r.t. mutable items.

14 years ago#9683: remove broken dead code dealing with nested arguments removed from Py3k, and...
Georg Brandl [Fri, 15 Oct 2010 16:07:41 +0000 (16:07 +0000)]
#9683: remove broken dead code dealing with nested arguments removed from Py3k, and update the docs and docstrings accordingly.

14 years ago#7771: reference to documentation of dictview methods and operations.
Georg Brandl [Fri, 15 Oct 2010 16:03:02 +0000 (16:03 +0000)]
#7771: reference to documentation of dictview methods and operations.

14 years ago#2830: add html.escape() helper and move cgi.escape() uses in the standard library...
Georg Brandl [Fri, 15 Oct 2010 15:57:45 +0000 (15:57 +0000)]
#2830: add html.escape() helper and move cgi.escape() uses in the standard library to it.  It defaults to quote=True and also escapes single quotes, which makes casual use safer.  The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning.

14 years agoRefrain from using inline suites.
Georg Brandl [Fri, 15 Oct 2010 15:32:05 +0000 (15:32 +0000)]
Refrain from using inline suites.

14 years ago#5355 followup: add unit test for new dictionaries, and provide submodules from xml...
Georg Brandl [Fri, 15 Oct 2010 15:25:23 +0000 (15:25 +0000)]
#5355 followup: add unit test for new dictionaries, and provide submodules from xml.parsers.expat as advertised.

14 years agoFix a minor docs bug.
Senthil Kumaran [Fri, 15 Oct 2010 15:21:19 +0000 (15:21 +0000)]
Fix a minor docs bug.

14 years ago#5355: Provide mappings from Expat error numbers to string descriptions and backwards...
Georg Brandl [Fri, 15 Oct 2010 14:46:48 +0000 (14:46 +0000)]
#5355: Provide mappings from Expat error numbers to string descriptions and backwards, in order to actually make it possible to analyze error codes provided by ExpatError.

14 years agoFix #10098. Fix sporadic test_os failures.
Brian Curtin [Fri, 15 Oct 2010 14:21:06 +0000 (14:21 +0000)]
Fix #10098. Fix sporadic test_os failures.

Amaury noticed that we're not waiting for the subprocess to be ready --
it should be checking for 1, not 0.

14 years agoRevert debug printout
Antoine Pitrou [Fri, 15 Oct 2010 13:52:53 +0000 (13:52 +0000)]
Revert debug printout

14 years agoEnable debug output at the start of the regression suite instead.
Antoine Pitrou [Fri, 15 Oct 2010 13:47:00 +0000 (13:47 +0000)]
Enable debug output at the start of the regression suite instead.
Sorry for the ephemeral inconvenience.

14 years agoTemporary debug printout for buildbots
Antoine Pitrou [Fri, 15 Oct 2010 13:35:51 +0000 (13:35 +0000)]
Temporary debug printout for buildbots

14 years agoFix sphinx role markups.
Senthil Kumaran [Fri, 15 Oct 2010 13:29:33 +0000 (13:29 +0000)]
Fix sphinx role markups.

14 years agoFix ``make check`` warnings.
Senthil Kumaran [Fri, 15 Oct 2010 13:10:10 +0000 (13:10 +0000)]
Fix ``make check`` warnings.

14 years agoFixing some sphinx inline directives - detected using ``make check``.
Senthil Kumaran [Fri, 15 Oct 2010 12:55:19 +0000 (12:55 +0000)]
Fixing some sphinx inline directives - detected using ``make check``.

14 years agoimp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates
Victor Stinner [Fri, 15 Oct 2010 12:48:01 +0000 (12:48 +0000)]
imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates
in the library path.

14 years agoUse locale encoding if Py_FileSystemDefaultEncoding is not set
Victor Stinner [Fri, 15 Oct 2010 12:04:23 +0000 (12:04 +0000)]
Use locale encoding if Py_FileSystemDefaultEncoding is not set

 * PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and
   PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if
   Py_FileSystemDefaultEncoding is NULL
 * redecode_filenames() functions and _Py_code_object_list (issue #9630)
   are no more needed: remove them

14 years agoredecode_filename(): don't need to initialize variables
Victor Stinner [Fri, 15 Oct 2010 11:16:59 +0000 (11:16 +0000)]
redecode_filename(): don't need to initialize variables

14 years agoMark _Py_char2wchar() input argument as constant
Victor Stinner [Fri, 15 Oct 2010 11:15:54 +0000 (11:15 +0000)]
Mark _Py_char2wchar() input argument as constant

14 years agoIssue10100 - fromfd is now available on all platforms
Senthil Kumaran [Fri, 15 Oct 2010 09:02:14 +0000 (09:02 +0000)]
Issue10100 - fromfd is now available on all platforms

14 years agoremove empty file
Benjamin Peterson [Fri, 15 Oct 2010 01:07:08 +0000 (01:07 +0000)]
remove empty file

14 years agoMerged revisions 83852-83853,83857,84042,84216,84274-84276,84375,85388,85478,85506...
Benjamin Peterson [Thu, 14 Oct 2010 23:00:04 +0000 (23:00 +0000)]
Merged revisions 83852-83853,83857,84042,84216,84274-84276,84375,85388,85478,85506-85508 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r83852 | benjamin.peterson | 2010-08-08 15:45:44 -0500 (Sun, 08 Aug 2010) | 1 line

  wrap with parens
........
  r83853 | benjamin.peterson | 2010-08-08 15:46:31 -0500 (Sun, 08 Aug 2010) | 1 line

  use parens
........
  r83857 | benjamin.peterson | 2010-08-08 15:59:49 -0500 (Sun, 08 Aug 2010) | 1 line

  things which use touch_import should be pre order
........
  r84042 | george.boutsioukis | 2010-08-14 16:10:19 -0500 (Sat, 14 Aug 2010) | 2 lines

  This revision incorporates into the 2to3 tool the new, faster, tree matching algorithm developed during a GSOC project. The algorithm resides in the two added modules, btm_matcher and btm_utils. New code has been added to drive the new matching process in refactor.py and a few minor changes were made in other modules. A BM_compatible flag(False by default) has been added in fixer_base and it is set to True in most of the current fixers.
........
  r84216 | benjamin.peterson | 2010-08-19 16:44:05 -0500 (Thu, 19 Aug 2010) | 1 line

  allow star_expr in testlist_gexp
........
  r84274 | benjamin.peterson | 2010-08-22 18:40:46 -0500 (Sun, 22 Aug 2010) | 1 line

  wrap long line
........
  r84275 | benjamin.peterson | 2010-08-22 18:42:22 -0500 (Sun, 22 Aug 2010) | 1 line

  cleanup
........
  r84276 | benjamin.peterson | 2010-08-22 18:51:01 -0500 (Sun, 22 Aug 2010) | 1 line

  when there's a None value and a traceback, don't call type with it #9661
........
  r84375 | george.boutsioukis | 2010-08-31 08:38:53 -0500 (Tue, 31 Aug 2010) | 3 lines

  Idiomatic code changes & stylistic issues fixed in the BottomMatcher module. Thanks to Benjamin Peterson for taking the time to review the code.
........
  r85388 | benjamin.peterson | 2010-10-12 17:27:44 -0500 (Tue, 12 Oct 2010) | 1 line

  fix urllib fixer with multiple as imports on a line #10069
........
  r85478 | benjamin.peterson | 2010-10-14 08:09:56 -0500 (Thu, 14 Oct 2010) | 1 line

  stop abusing docstrings
........
  r85506 | benjamin.peterson | 2010-10-14 17:45:19 -0500 (Thu, 14 Oct 2010) | 1 line

  kill sibling import
........
  r85507 | benjamin.peterson | 2010-10-14 17:54:15 -0500 (Thu, 14 Oct 2010) | 1 line

  remove trailing whitespace
........
  r85508 | benjamin.peterson | 2010-10-14 17:55:28 -0500 (Thu, 14 Oct 2010) | 1 line

  typo
........

14 years agoMore proper closing of files
Antoine Pitrou [Thu, 14 Oct 2010 22:11:44 +0000 (22:11 +0000)]
More proper closing of files

14 years agorevert change that was in wrong branch
Benjamin Peterson [Thu, 14 Oct 2010 22:00:20 +0000 (22:00 +0000)]
revert change that was in wrong branch

14 years agoAdd test case for issue #9409, non-ascii char in doctest. It passes in 3.2 but needs...
Florent Xicluna [Thu, 14 Oct 2010 21:35:58 +0000 (21:35 +0000)]
Add test case for issue #9409, non-ascii char in doctest.  It passes in 3.2 but needs fixing in 2.7.

14 years agoExplicitly close some files (from issue #10093)
Antoine Pitrou [Thu, 14 Oct 2010 21:15:17 +0000 (21:15 +0000)]
Explicitly close some files (from issue #10093)

14 years agoFix the regex to match all kind of filenames, for interactive debugging in doctests...
Florent Xicluna [Thu, 14 Oct 2010 20:56:20 +0000 (20:56 +0000)]
Fix the regex to match all kind of filenames, for interactive debugging in doctests. (issue #9409)

14 years agoIncrease timeouts in test_ftplib (for very slow buildbots)
Antoine Pitrou [Thu, 14 Oct 2010 20:35:26 +0000 (20:35 +0000)]
Increase timeouts in test_ftplib (for very slow buildbots)

14 years agoOops
Antoine Pitrou [Thu, 14 Oct 2010 18:32:54 +0000 (18:32 +0000)]
Oops

14 years agoReally fix bug
Antoine Pitrou [Thu, 14 Oct 2010 18:31:39 +0000 (18:31 +0000)]
Really fix bug

14 years agoFix issue 10094, by narrowing down the test for PROXY environment variables.
Barry Warsaw [Thu, 14 Oct 2010 18:10:34 +0000 (18:10 +0000)]
Fix issue 10094, by narrowing down the test for PROXY environment variables.
Ubuntu 10.10 introduced $UBUNTU_MENUPROXY into the default user environment,
and that's what's tripping up the code.

14 years agoRun autoconf to update configure.in -> configure.
Barry Warsaw [Thu, 14 Oct 2010 17:38:46 +0000 (17:38 +0000)]
Run autoconf to update configure.in -> configure.

14 years agoIssue 9183: Intern UTC timezone.
Alexander Belopolsky [Thu, 14 Oct 2010 17:03:51 +0000 (17:03 +0000)]
Issue 9183: Intern UTC timezone.

14 years agoReplace the "compiler" resource with the more generic "cpu", so
Antoine Pitrou [Thu, 14 Oct 2010 15:34:31 +0000 (15:34 +0000)]
Replace the "compiler" resource with the more generic "cpu", so
as to mark CPU-heavy tests.

14 years ago- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
Matthias Klose [Thu, 14 Oct 2010 15:24:22 +0000 (15:24 +0000)]
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.

14 years agoIssue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,
Antoine Pitrou [Thu, 14 Oct 2010 15:05:38 +0000 (15:05 +0000)]
Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,
where supported by the system.  Patch by Nikita Vetoshkin.