]> granicus.if.org Git - python/log
python
14 years agoRemoved merge tracking for "svnmerge" for
Thomas Heller [Tue, 30 Mar 2010 19:55:34 +0000 (19:55 +0000)]
Removed merge tracking for "svnmerge" for
svn+ssh://pythondev@svn.python.org/python/branches/branch_libffi-3_0_10-win

14 years agoMerged revisions 79115,79424,79491 via svnmerge from
Thomas Heller [Tue, 30 Mar 2010 19:46:23 +0000 (19:46 +0000)]
Merged revisions 79115,79424,79491 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/branch_libffi-3_0_10-win

........
  r79115 | thomas.heller | 2010-03-19 22:14:47 +0100 (Fr, 19 Mrz 2010) | 7 lines

  Work in progress.  2 tests fail on x86/win32 because the stack
  checking code in ffi_call_win32 is not yet implemented.

  Remove most files from _ctypes/libffi_msvc, only two include files
  stay (updated from _ctypes/libffi/...).  Other files are used in the
  cross-platform _ctypes/libffi directory.
........
  r79424 | thomas.heller | 2010-03-25 19:28:02 +0100 (Do, 25 Mrz 2010) | 1 line

  Build _ctypes on Win64.
........
  r79491 | thomas.heller | 2010-03-29 21:30:33 +0200 (Mo, 29 Mrz 2010) | 4 lines

  On Windows, ctypes does no longer check the stack before and after
  calling a foreign function.
  This allows to use the unmodified libffi library.
........

14 years agoFix small error in r79502
Antoine Pitrou [Tue, 30 Mar 2010 18:58:22 +0000 (18:58 +0000)]
Fix small error in r79502

14 years agoIssue #8248: Add some tests for the bool type. Patch by Gregory Nofi.
Antoine Pitrou [Tue, 30 Mar 2010 18:49:45 +0000 (18:49 +0000)]
Issue #8248: Add some tests for the bool type.  Patch by Gregory Nofi.

14 years agoadd inspect.getcallargs, which binds function arguments like a normal call #3135
Benjamin Peterson [Tue, 30 Mar 2010 17:58:13 +0000 (17:58 +0000)]
add inspect.getcallargs, which binds function arguments like a normal call #3135

Patch by George Sakkis

14 years agofix ACKS: alphabetic order and UTF-8
Florent Xicluna [Tue, 30 Mar 2010 16:42:47 +0000 (16:42 +0000)]
fix ACKS: alphabetic order and UTF-8

14 years ago#8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt ...
Florent Xicluna [Tue, 30 Mar 2010 16:31:14 +0000 (16:31 +0000)]
#8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt (SIGINT).

14 years agoHighlight the change of behavior related to r79494. Now VT and FF are linebreaks.
Florent Xicluna [Tue, 30 Mar 2010 16:29:03 +0000 (16:29 +0000)]
Highlight the change of behavior related to r79494.  Now VT and FF are linebreaks.

14 years ago#7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode...
Florent Xicluna [Tue, 30 Mar 2010 08:24:06 +0000 (08:24 +0000)]
#7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14.

14 years agoBackport of weakref.WeakSet and tests from Python 3.
Michael Foord [Mon, 29 Mar 2010 20:04:23 +0000 (20:04 +0000)]
Backport of weakref.WeakSet and tests from Python 3.

14 years agoUpdate itertools recipe for consume().
Raymond Hettinger [Sun, 28 Mar 2010 18:25:01 +0000 (18:25 +0000)]
Update itertools recipe for consume().

14 years agoAdd a note on optimizing the itertools recipes for production.
Raymond Hettinger [Sun, 28 Mar 2010 18:08:15 +0000 (18:08 +0000)]
Add a note on optimizing the itertools recipes for production.

14 years agoUpdate itertools recipes.
Raymond Hettinger [Sun, 28 Mar 2010 18:02:41 +0000 (18:02 +0000)]
Update itertools recipes.

14 years agoAddition of delta keyword argument to unittest.TestCase.assertAlmostEquals and assert...
Michael Foord [Sat, 27 Mar 2010 19:10:11 +0000 (19:10 +0000)]
Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals and assertNotAlmostEquals

This allows the comparison of objects by specifying a maximum difference; this includes the comparing of non-numeric objects that don't support rounding.

14 years agoRename the unittest test_suite function to not clash with a test module name (unittes...
Michael Foord [Sat, 27 Mar 2010 13:42:34 +0000 (13:42 +0000)]
Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous).

14 years agoA fix for running unittest tests on platforms without the audioop module (e.g. jython...
Michael Foord [Sat, 27 Mar 2010 12:55:19 +0000 (12:55 +0000)]
A fix for running unittest tests on platforms without the audioop module (e.g. jython and IronPython)

14 years agoAdd Misc/NEWS entry for r79455.
Mark Dickinson [Sat, 27 Mar 2010 11:14:37 +0000 (11:14 +0000)]
Add Misc/NEWS entry for r79455.

14 years agoMake Fraction to complex comparisons with <=, <, >= or > raise TypeError.
Mark Dickinson [Sat, 27 Mar 2010 11:09:29 +0000 (11:09 +0000)]
Make Fraction to complex comparisons with <=, <, >= or > raise TypeError.

14 years agoEnsure that the failed or unexpected tests are sorted before printing.
Florent Xicluna [Fri, 26 Mar 2010 19:32:44 +0000 (19:32 +0000)]
Ensure that the failed or unexpected tests are sorted before printing.

14 years agoIssue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking
Antoine Pitrou [Fri, 26 Mar 2010 19:27:16 +0000 (19:27 +0000)]
Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking
reads and writes are always retried by OpenSSL itself.

(this is a followup to issue #3890)

14 years agoreorder imports
Benjamin Peterson [Fri, 26 Mar 2010 13:53:32 +0000 (13:53 +0000)]
reorder imports

14 years agoMakefile.pre.in for the unittest/test directory
Michael Foord [Fri, 26 Mar 2010 13:07:38 +0000 (13:07 +0000)]
Makefile.pre.in for the unittest/test directory

14 years agoAddition of -c command line option to unittest, to handle ctrl-c during a test run...
Michael Foord [Fri, 26 Mar 2010 03:18:31 +0000 (03:18 +0000)]
Addition of -c command line option to unittest, to handle ctrl-c during a test run more elegantly

14 years agoMove a support TestCase out of the main namespace in unittest.test.test_suite
Michael Foord [Fri, 26 Mar 2010 02:53:56 +0000 (02:53 +0000)]
Move a support TestCase out of the main namespace in unittest.test.test_suite

14 years agoRemove incorrect docstring in unittest.test
Michael Foord [Fri, 26 Mar 2010 00:03:38 +0000 (00:03 +0000)]
Remove incorrect docstring in unittest.test

14 years agoTurn unittest tests into a package
Michael Foord [Thu, 25 Mar 2010 23:56:33 +0000 (23:56 +0000)]
Turn unittest tests into a package

14 years agoFix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.
Brian Curtin [Thu, 25 Mar 2010 23:48:54 +0000 (23:48 +0000)]
Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.

14 years agomake naming convention consistent
Benjamin Peterson [Thu, 25 Mar 2010 23:27:16 +0000 (23:27 +0000)]
make naming convention consistent

14 years agoFix test_unittest and test_warnings when running "python -Werror -m test.regrtest"
Florent Xicluna [Thu, 25 Mar 2010 20:39:10 +0000 (20:39 +0000)]
Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest"

14 years ago#8207: Fix test_pep277 on OS X
Florent Xicluna [Thu, 25 Mar 2010 20:33:49 +0000 (20:33 +0000)]
#8207: Fix test_pep277 on OS X

14 years agoSyntax cleanup `== None` -> `is None`
Florent Xicluna [Thu, 25 Mar 2010 20:32:07 +0000 (20:32 +0000)]
Syntax cleanup `== None` -> `is None`

14 years agomake an attempt to add capsule to the Windows build
Benjamin Peterson [Thu, 25 Mar 2010 03:44:24 +0000 (03:44 +0000)]
make an attempt to add capsule to the Windows build

14 years agoAdd various items
Andrew M. Kuchling [Thu, 25 Mar 2010 01:35:51 +0000 (01:35 +0000)]
Add various items

14 years agoRemove extraneous experimental code checked in by accident.
Larry Hastings [Thu, 25 Mar 2010 01:23:27 +0000 (01:23 +0000)]
Remove extraneous experimental code checked in by accident.

14 years agoFix a gcc warning introduced by r79397.
Victor Stinner [Thu, 25 Mar 2010 01:18:38 +0000 (01:18 +0000)]
Fix a gcc warning introduced by r79397.

14 years agofix eol properties on capsule files
Benjamin Peterson [Thu, 25 Mar 2010 01:05:57 +0000 (01:05 +0000)]
fix eol properties on capsule files

14 years agoset eol on email example
Benjamin Peterson [Thu, 25 Mar 2010 01:04:58 +0000 (01:04 +0000)]
set eol on email example

14 years agoset bsddb eol style
Benjamin Peterson [Thu, 25 Mar 2010 01:03:51 +0000 (01:03 +0000)]
set bsddb eol style

14 years agoBackported PyCapsule from 3.1, and converted most uses of
Larry Hastings [Thu, 25 Mar 2010 00:54:54 +0000 (00:54 +0000)]
Backported PyCapsule from 3.1, and converted most uses of
CObject to PyCapsule.

14 years agoFix _curses.tiget*() functions: deny None to avoid a crash.
Victor Stinner [Thu, 25 Mar 2010 00:51:58 +0000 (00:51 +0000)]
Fix _curses.tiget*() functions: deny None to avoid a crash.

Fix the following calls: _curses.tigetflag(None), _curses.tigetnum(None),
_curses.tigetstr(None).

14 years agoIssue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler
Victor Stinner [Thu, 25 Mar 2010 00:21:53 +0000 (00:21 +0000)]
Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler
optimizations are disabled when --with-pydebug is used.

14 years agoReplace license with simple attribution.
Steven Bethard [Wed, 24 Mar 2010 23:03:24 +0000 (23:03 +0000)]
Replace license with simple attribution.

14 years agoRevert r79384 (the fix failed).
Antoine Pitrou [Wed, 24 Mar 2010 22:12:15 +0000 (22:12 +0000)]
Revert r79384 (the fix failed).

14 years agoreplace copy right notice with simple attribution
Benjamin Peterson [Wed, 24 Mar 2010 22:03:09 +0000 (22:03 +0000)]
replace copy right notice with simple attribution

14 years agoTrying to fix #8108. Will watch the buildbot(s).
Antoine Pitrou [Wed, 24 Mar 2010 21:55:12 +0000 (21:55 +0000)]
Trying to fix #8108.  Will watch the buildbot(s).

14 years agoSkip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available.
Florent Xicluna [Wed, 24 Mar 2010 19:33:25 +0000 (19:33 +0000)]
Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available.

14 years agoVarious edits
Andrew M. Kuchling [Wed, 24 Mar 2010 18:07:43 +0000 (18:07 +0000)]
Various edits

14 years agologging: Updated SysLogHandler documentation.
Vinay Sajip [Wed, 24 Mar 2010 17:36:35 +0000 (17:36 +0000)]
logging: Updated SysLogHandler documentation.

14 years agoSkip test_ascii_formatd if _ctypes is not available (BSD, ...).
Florent Xicluna [Wed, 24 Mar 2010 17:32:58 +0000 (17:32 +0000)]
Skip test_ascii_formatd if _ctypes is not available (BSD, ...).
Previous change was incomplete (r79334).

14 years agologging: Documentation tweak.
Vinay Sajip [Wed, 24 Mar 2010 15:10:40 +0000 (15:10 +0000)]
logging: Documentation tweak.

14 years agoAdd Brian Curtin.
Martin v. Löwis [Wed, 24 Mar 2010 15:05:53 +0000 (15:05 +0000)]
Add Brian Curtin.

14 years agologging: Added LOG_FTP for SysLogHandler and updated documentation.
Vinay Sajip [Wed, 24 Mar 2010 14:31:21 +0000 (14:31 +0000)]
logging: Added LOG_FTP for SysLogHandler and updated documentation.

14 years agoAnother typo.
Ezio Melotti [Tue, 23 Mar 2010 23:53:20 +0000 (23:53 +0000)]
Another typo.

14 years ago#8217: typo.
Ezio Melotti [Tue, 23 Mar 2010 23:26:21 +0000 (23:26 +0000)]
#8217: typo.

14 years agothe == test doesn't work on Solaris #8210
Benjamin Peterson [Tue, 23 Mar 2010 20:58:37 +0000 (20:58 +0000)]
the == test doesn't work on Solaris #8210

14 years agoThe SIGINT signal may happen earlier, during site.py initialization.
Florent Xicluna [Tue, 23 Mar 2010 19:19:16 +0000 (19:19 +0000)]
The SIGINT signal may happen earlier, during site.py initialization.

14 years agoadd some unittest items
Andrew M. Kuchling [Tue, 23 Mar 2010 18:39:24 +0000 (18:39 +0000)]
add some unittest items

14 years agoThe standard error should be empty when the signal is killed, except on SIGINT.
Florent Xicluna [Tue, 23 Mar 2010 15:05:30 +0000 (15:05 +0000)]
The standard error should be empty when the signal is killed, except on SIGINT.

14 years agoSilence test_subprocess.
Florent Xicluna [Tue, 23 Mar 2010 14:36:45 +0000 (14:36 +0000)]
Silence test_subprocess.

14 years agoSkip test_format_deprecation if _ctypes is not available. Add a filter to the warnin...
Florent Xicluna [Tue, 23 Mar 2010 11:07:54 +0000 (11:07 +0000)]
Skip test_format_deprecation if _ctypes is not available.  Add a filter to the warning check.

14 years agoFixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs
Senthil Kumaran [Tue, 23 Mar 2010 08:46:31 +0000 (08:46 +0000)]
Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs

14 years agoMerged revisions 79313,79324 via svnmerge from
Benjamin Peterson [Tue, 23 Mar 2010 03:03:55 +0000 (03:03 +0000)]
Merged revisions 79313,79324 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r79313 | benjamin.peterson | 2010-03-22 17:59:57 -0500 (Mon, 22 Mar 2010) | 1 line

  another case where a symbol is needed
........
  r79324 | benjamin.peterson | 2010-03-22 21:59:47 -0500 (Mon, 22 Mar 2010) | 1 line

  use unicode literals
........

14 years agoLink specifically to the UCD version 5.2.0.
Ezio Melotti [Tue, 23 Mar 2010 00:38:12 +0000 (00:38 +0000)]
Link specifically to the UCD version 5.2.0.

14 years agoRemove link to objects.rst (gone in r79179).
Ezio Melotti [Tue, 23 Mar 2010 00:25:19 +0000 (00:25 +0000)]
Remove link to objects.rst (gone in r79179).

14 years agoUpdate the version number of the Unicode Database in a few more places.
Ezio Melotti [Mon, 22 Mar 2010 23:07:32 +0000 (23:07 +0000)]
Update the version number of the Unicode Database in a few more places.

14 years agoMerged revisions 79309 via svnmerge from
Benjamin Peterson [Mon, 22 Mar 2010 22:54:42 +0000 (22:54 +0000)]
Merged revisions 79309 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r79309 | benjamin.peterson | 2010-03-22 17:50:47 -0500 (Mon, 22 Mar 2010) | 1 line

  pass correct symbol in
........

14 years agoIssue #8205: Remove the "Modules" directory from sys.path when Python is running...
Florent Xicluna [Mon, 22 Mar 2010 22:52:11 +0000 (22:52 +0000)]
Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only).

14 years ago#7667: Fix doctest failures with non-ASCII paths.
Florent Xicluna [Mon, 22 Mar 2010 22:45:50 +0000 (22:45 +0000)]
#7667: Fix doctest failures with non-ASCII paths.

14 years agoMerged revisions 79077,79137,79304-79305 via svnmerge from
Benjamin Peterson [Mon, 22 Mar 2010 22:40:06 +0000 (22:40 +0000)]
Merged revisions 79077,79137,79304-79305 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r79077 | benjamin.peterson | 2010-03-18 18:05:29 -0500 (Thu, 18 Mar 2010) | 1 line

  port detect_encoding improvements from py3k
........
  r79137 | benjamin.peterson | 2010-03-20 11:12:53 -0500 (Sat, 20 Mar 2010) | 1 line

  add a fixer for setting sys.exitfunc #2356
........
  r79304 | benjamin.peterson | 2010-03-22 17:20:22 -0500 (Mon, 22 Mar 2010) | 1 line

  fix test_parser when it's run in a path with spaces #7666
........
  r79305 | benjamin.peterson | 2010-03-22 17:27:07 -0500 (Mon, 22 Mar 2010) | 1 line

  normalize whitespace
........

14 years agoIssue #7512: shutil.copystat() could raise an OSError when the filesystem
Antoine Pitrou [Mon, 22 Mar 2010 19:59:46 +0000 (19:59 +0000)]
Issue #7512: shutil.copystat() could raise an OSError when the filesystem
didn't support chflags() (for example ZFS under FreeBSD).  The error is
now silenced.

14 years ago#7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes.
Florent Xicluna [Mon, 22 Mar 2010 17:18:18 +0000 (17:18 +0000)]
#7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes.

14 years agoPreserve backward compatibility of the ctypes module.
Florent Xicluna [Mon, 22 Mar 2010 16:36:51 +0000 (16:36 +0000)]
Preserve backward compatibility of the ctypes module.
"This file should be kept compatible with Python 2.3, see PEP 291."

14 years agoIssue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated.
Florent Xicluna [Mon, 22 Mar 2010 16:07:38 +0000 (16:07 +0000)]
Issue #7703: ctypes supports both buffer() and memoryview().  The former is deprecated.
Complement of r79288.

14 years agoIssue #7860: platform.uname now reports the correct 'machine' type
R. David Murray [Mon, 22 Mar 2010 15:55:09 +0000 (15:55 +0000)]
Issue #7860: platform.uname now reports the correct 'machine' type
when Python is running in WOW64 mode on 64 bit Windows.  Patch by
Brian Curtin.

14 years agologging: Added getChild utility method to Logger and added isEnabledFor method to...
Vinay Sajip [Mon, 22 Mar 2010 15:29:01 +0000 (15:29 +0000)]
logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter.

14 years agoMissing testsuite files
Jesus Cea [Mon, 22 Mar 2010 15:18:46 +0000 (15:18 +0000)]
Missing testsuite files

14 years agoGet rid of buffer() in test_ctypes: backport the 3.x tests.
Florent Xicluna [Mon, 22 Mar 2010 15:02:46 +0000 (15:02 +0000)]
Get rid of buffer() in test_ctypes:  backport the 3.x tests.

14 years agoFix an occasional test_ftplib failure, following r79226.
Antoine Pitrou [Mon, 22 Mar 2010 14:41:48 +0000 (14:41 +0000)]
Fix an occasional test_ftplib failure, following r79226.

14 years agopybsddb 4.8.4 integration. Please, comment in issue #8156
Jesus Cea [Mon, 22 Mar 2010 14:22:26 +0000 (14:22 +0000)]
pybsddb 4.8.4 integration. Please, comment in issue #8156

14 years agoIssue #8201: logging: Handle config errors when non-ASCII and Unicode logger names...
Vinay Sajip [Mon, 22 Mar 2010 13:02:28 +0000 (13:02 +0000)]
Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time.

14 years agoFix the NEWS about my last commit: an unicode subclass can now override the
Victor Stinner [Mon, 22 Mar 2010 12:36:28 +0000 (12:36 +0000)]
Fix the NEWS about my last commit: an unicode subclass can now override the
__unicode__ method (and not the __str__ method).

Simplify also the testcase.

14 years agoIssue #8200: logging: Handle errors when multiprocessing is not fully loaded when...
Vinay Sajip [Mon, 22 Mar 2010 12:33:08 +0000 (12:33 +0000)]
Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs.

14 years agoIssue #1583863: An unicode subclass can now override the __str__ method
Victor Stinner [Mon, 22 Mar 2010 12:24:37 +0000 (12:24 +0000)]
Issue #1583863: An unicode subclass can now override the __str__ method

14 years agoCorrect usage message displayed for python -m unittest -h
Michael Foord [Mon, 22 Mar 2010 02:49:08 +0000 (02:49 +0000)]
Correct usage message displayed for python -m unittest -h

14 years agoexpected failure should not trigger failfast behavior in unittest.
Michael Foord [Mon, 22 Mar 2010 01:56:54 +0000 (01:56 +0000)]
expected failure should not trigger failfast behavior in unittest.

14 years agoRemoving Python 2.3 compatibility code from unittest.
Michael Foord [Mon, 22 Mar 2010 01:41:11 +0000 (01:41 +0000)]
Removing Python 2.3 compatibility code from unittest.

14 years agoFix failing test committed by accident.
Michael Foord [Mon, 22 Mar 2010 01:02:23 +0000 (01:02 +0000)]
Fix failing test committed by accident.

14 years ago-f/--failfast command line option for unittest. Issue 8074. Documentation still neede...
Michael Foord [Mon, 22 Mar 2010 01:01:34 +0000 (01:01 +0000)]
-f/--failfast command line option for unittest. Issue 8074. Documentation still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest

14 years agoIssue 7815. __unittest in module globals trims frames from reported stacktraces in...
Michael Foord [Mon, 22 Mar 2010 00:06:30 +0000 (00:06 +0000)]
Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest.

14 years agotake into account keyword arguments when passing too many args
Benjamin Peterson [Sun, 21 Mar 2010 20:30:30 +0000 (20:30 +0000)]
take into account keyword arguments when passing too many args

14 years agoimprove error message from passing inadequate number of keyword arguments #6474
Benjamin Peterson [Sun, 21 Mar 2010 20:21:00 +0000 (20:21 +0000)]
improve error message from passing inadequate number of keyword arguments #6474

Note this removes the "non-keyword" or "keyword" phrases from these messages.

14 years agodon't write duplicate tests
Benjamin Peterson [Sun, 21 Mar 2010 19:56:37 +0000 (19:56 +0000)]
don't write duplicate tests

14 years agofix import
Benjamin Peterson [Sun, 21 Mar 2010 19:54:56 +0000 (19:54 +0000)]
fix import

14 years agoco_varnames is certainly a tuple, so let's not waste time finding out
Benjamin Peterson [Sun, 21 Mar 2010 19:39:52 +0000 (19:39 +0000)]
co_varnames is certainly a tuple, so let's not waste time finding out

14 years agoremove pointless condition
Benjamin Peterson [Sun, 21 Mar 2010 19:35:39 +0000 (19:35 +0000)]
remove pointless condition

14 years agoIssue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.
Antoine Pitrou [Sun, 21 Mar 2010 19:33:38 +0000 (19:33 +0000)]
Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.

14 years agoflatten condition
Benjamin Peterson [Sun, 21 Mar 2010 19:24:08 +0000 (19:24 +0000)]
flatten condition

14 years agoIssue #1628484: The Makefile doesn't ignore the CFLAGS environment
Antoine Pitrou [Sun, 21 Mar 2010 19:19:41 +0000 (19:19 +0000)]
Issue #1628484: The Makefile doesn't ignore the CFLAGS environment
variable anymore.  It also forwards the LDFLAGS settings to the linker
when building a shared library.

14 years agoFix plural.
Georg Brandl [Sun, 21 Mar 2010 19:01:38 +0000 (19:01 +0000)]
Fix plural.

14 years agoAdd items
Andrew M. Kuchling [Sun, 21 Mar 2010 18:47:12 +0000 (18:47 +0000)]
Add items