]> granicus.if.org Git - python/log
python
14 years agoCross platform unittest.TestResult newline handling when buffering stdout / stderr.
Michael Foord [Sat, 3 Apr 2010 02:21:39 +0000 (02:21 +0000)]
Cross platform unittest.TestResult newline handling when buffering stdout / stderr.

14 years agogive TypeError when trying to set T_STRING_INPLACE
Benjamin Peterson [Sat, 3 Apr 2010 01:28:57 +0000 (01:28 +0000)]
give TypeError when trying to set T_STRING_INPLACE

14 years agoSupport dotted module names for test discovery paths in unittest. Issue 7780.
Michael Foord [Sat, 3 Apr 2010 01:15:21 +0000 (01:15 +0000)]
Support dotted module names for test discovery paths in unittest. Issue 7780.

14 years agosplit out large test function
Benjamin Peterson [Sat, 3 Apr 2010 01:08:34 +0000 (01:08 +0000)]
split out large test function

14 years agoFix assertRaises usage on reflection functions which should raise
Brian Curtin [Sat, 3 Apr 2010 00:59:32 +0000 (00:59 +0000)]
Fix assertRaises usage on reflection functions which should raise
NotImplementedError on Windows XP and below.

14 years agomore _PyString_Resize error checking
Benjamin Peterson [Sat, 3 Apr 2010 00:57:33 +0000 (00:57 +0000)]
more _PyString_Resize error checking

14 years agoClear cyclical references in list based OrderedDict.
Raymond Hettinger [Sat, 3 Apr 2010 00:39:26 +0000 (00:39 +0000)]
Clear cyclical references in list based OrderedDict.

14 years agoalways check _PyString_Resize for error
Benjamin Peterson [Fri, 2 Apr 2010 23:59:41 +0000 (23:59 +0000)]
always check _PyString_Resize for error

also normalize how this error is checked

14 years agoset svn:eol-style on new file
Benjamin Peterson [Fri, 2 Apr 2010 23:31:40 +0000 (23:31 +0000)]
set svn:eol-style on new file

14 years agoAdd note about #1220212 (os.kill on Windows)
Brian Curtin [Fri, 2 Apr 2010 23:31:28 +0000 (23:31 +0000)]
Add note about #1220212 (os.kill on Windows)

14 years agoImplement #1220212. Add os.kill support for Windows.
Brian Curtin [Fri, 2 Apr 2010 23:26:06 +0000 (23:26 +0000)]
Implement #1220212. Add os.kill support for Windows.

os.kill takes one of two newly added signals, CTRL_C_EVENT and
CTRL_BREAK_EVENT, or any integer value. The events are a special case
which work with subprocess console applications which implement a
special console control handler. Any other value but those two will
cause os.kill to use TerminateProcess, outright killing the process.

This change adds win_console_handler.py, which is a script to implement
SetConsoleCtrlHandler and applicable handler function, using ctypes.

subprocess also gets another attribute which is a necessary flag to
creationflags in Popen in order to send the CTRL events.

14 years agoIssue #8038: Addition of unittest.TestCase.assertNotRegexpMatches
Michael Foord [Fri, 2 Apr 2010 22:55:59 +0000 (22:55 +0000)]
Issue #8038: Addition of unittest.TestCase.assertNotRegexpMatches

14 years agounittest tests no longer replace the sys.stdout put in place by regrtest
Michael Foord [Fri, 2 Apr 2010 22:30:56 +0000 (22:30 +0000)]
unittest tests no longer replace the sys.stdout put in place by regrtest

14 years agoIssue #8294: Allow float and Decimal arguments in Fraction constructor.
Mark Dickinson [Fri, 2 Apr 2010 22:27:36 +0000 (22:27 +0000)]
Issue #8294:  Allow float and Decimal arguments in Fraction constructor.

14 years agoTestResult stores original sys.stdout and tests no longer use sys.__stdout__ (etc...
Michael Foord [Fri, 2 Apr 2010 22:08:29 +0000 (22:08 +0000)]
TestResult stores original sys.stdout and tests no longer use sys.__stdout__ (etc) in tests for unittest -b command line option

14 years agoAdd a line about #7347 to Misc\News
Brian Curtin [Fri, 2 Apr 2010 21:51:37 +0000 (21:51 +0000)]
Add a line about #7347 to Misc\News

14 years agoFix test_compiler.py that was using unittest.__file__ to find Lib/ (unittest is now...
Ezio Melotti [Fri, 2 Apr 2010 21:43:10 +0000 (21:43 +0000)]
Fix test_compiler.py that was using unittest.__file__ to find Lib/ (unittest is now a package).

14 years agoAddition of -b command line option to unittest for buffering stdout and stderr during...
Michael Foord [Fri, 2 Apr 2010 21:42:47 +0000 (21:42 +0000)]
Addition of -b command line option to unittest for buffering stdout and stderr during test runs.

14 years agoremoved documentation on code that was reverted and pushed into distutils2
Tarek Ziadé [Fri, 2 Apr 2010 21:34:19 +0000 (21:34 +0000)]
removed documentation on code that was reverted and pushed into distutils2

14 years agoImplement #7347. Add CreateKeyEx, DeleteKeyEx, and update _winreg tests.
Brian Curtin [Fri, 2 Apr 2010 21:18:14 +0000 (21:18 +0000)]
Implement #7347. Add CreateKeyEx, DeleteKeyEx, and update _winreg tests.

*ReflectionKey functions used to not be documented or tested, but they are
now sufficiently documented and tested on platforms where they apply.
Additionally, fixed a bug in QueryReflectionKey which was returning an
incorrect value.

All tests pass from XP through Windows 7, on 32 and 64-bit platforms.

14 years agoremoved the local copy of xxmodule, and skip only test_build_ext when xxmodule is...
Tarek Ziadé [Fri, 2 Apr 2010 21:14:04 +0000 (21:14 +0000)]
removed the local copy of xxmodule, and skip only test_build_ext when xxmodule is not found, not the whole unittest

14 years agoAdd python-gdb.py and python.exe-gdb.py to distclean target in Makefile.
Mark Dickinson [Fri, 2 Apr 2010 20:34:26 +0000 (20:34 +0000)]
Add python-gdb.py and python.exe-gdb.py to distclean target in Makefile.

14 years agoAdd python.exe-gdb.py to svn:ignore, for the benefit of OS X developers.
Mark Dickinson [Fri, 2 Apr 2010 20:22:21 +0000 (20:22 +0000)]
Add python.exe-gdb.py to svn:ignore, for the benefit of OS X developers.

14 years agoIssue 8257: Decimal constructor to accept float.
Raymond Hettinger [Fri, 2 Apr 2010 18:39:24 +0000 (18:39 +0000)]
Issue 8257: Decimal constructor to accept float.

14 years ago#6647: add note to two examples
Andrew M. Kuchling [Fri, 2 Apr 2010 17:54:26 +0000 (17:54 +0000)]
#6647: add note to two examples

14 years ago#6647: document that catch_warnings is not thread-safe
Andrew M. Kuchling [Fri, 2 Apr 2010 17:48:23 +0000 (17:48 +0000)]
#6647: document that catch_warnings is not thread-safe

14 years agoBackport some robotparser test and skip the test if the external resource is not...
Florent Xicluna [Fri, 2 Apr 2010 17:26:42 +0000 (17:26 +0000)]
Backport some robotparser test and skip the test if the external resource is not available.

14 years ago#4440: modernize a use of filter(), making it compatible with 3.x
Andrew M. Kuchling [Fri, 2 Apr 2010 16:59:16 +0000 (16:59 +0000)]
#4440: modernize a use of filter(), making it compatible with 3.x

14 years agoIssue 7994: Make object.__format__ with a non-empty format string a PendingDecprecati...
Eric Smith [Fri, 2 Apr 2010 12:30:56 +0000 (12:30 +0000)]
Issue 7994: Make object.__format__ with a non-empty format string a PendingDecprecationWarning. Still need to remove uses of this from various tests.

14 years agoIssue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is
Larry Hastings [Fri, 2 Apr 2010 11:18:17 +0000 (11:18 +0000)]
Issue #8235: _socket: Add the constant ``SO_SETFIB``.  SO_SETFIB is
a socket option available on FreeBSD 7.1 and newer.

14 years agoCapsule-related changes:
Larry Hastings [Fri, 2 Apr 2010 11:01:35 +0000 (11:01 +0000)]
Capsule-related changes:
* PyCObject_AsVoidPtr() can now open capsules.  This addresses
  most of the remaining backwards-compatibility concerns about
  the conversion of Python 2.7 from CObjects to capsules.
* CObjects were marked Pending Deprecation.
* Documentation about this pending deprecation was added to
  cobject.h.
* The capsule source files were added to the legacy PC build
  processes.

14 years agoIssue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable.
Mark Dickinson [Fri, 2 Apr 2010 10:35:12 +0000 (10:35 +0000)]
Issue #7279:  Make Decimal('nan') hashable.  Decimal('snan') remains unhashable.

Also rewrite the Decimal __hash__ method so that it doesn't rely on
float('inf') being valid: float('inf') could raise an exception on
platforms not using IEEE 754 arithmetic.

14 years agoIssue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation.
Mark Dickinson [Fri, 2 Apr 2010 10:17:07 +0000 (10:17 +0000)]
Issue #7279:  Make comparisons involving a Decimal sNaN signal InvalidOperation.

14 years ago#8012: clarification in generator glossary entry.
Georg Brandl [Fri, 2 Apr 2010 09:11:49 +0000 (09:11 +0000)]
#8012: clarification in generator glossary entry.

14 years agoDocument PyImport_ExecCodeModuleEx().
Georg Brandl [Fri, 2 Apr 2010 09:07:42 +0000 (09:07 +0000)]
Document PyImport_ExecCodeModuleEx().

14 years agoRemove col-spanning cells in logging docs.
Georg Brandl [Fri, 2 Apr 2010 09:03:18 +0000 (09:03 +0000)]
Remove col-spanning cells in logging docs.

14 years agoIssue #2531: Make float-to-decimal comparisons return correct results.
Mark Dickinson [Fri, 2 Apr 2010 08:53:22 +0000 (08:53 +0000)]
Issue #2531: Make float-to-decimal comparisons return correct results.

Float to decimal comparison operations now return a result based on
the numeric values of the operands.  Decimal.__hash__ has also been
fixed so that Decimal and float values that compare equal have equal
hash value.

14 years agoFix typo in unicode character name.
Georg Brandl [Fri, 2 Apr 2010 08:51:31 +0000 (08:51 +0000)]
Fix typo in unicode character name.

14 years ago#2768: add a note on how to get a file descriptor.
Georg Brandl [Fri, 2 Apr 2010 08:39:09 +0000 (08:39 +0000)]
#2768: add a note on how to get a file descriptor.

14 years agoAdd 2.6.5.
Georg Brandl [Fri, 2 Apr 2010 08:34:41 +0000 (08:34 +0000)]
Add 2.6.5.

14 years ago#7092: silence some py3k warnings
Florent Xicluna [Fri, 2 Apr 2010 08:30:21 +0000 (08:30 +0000)]
#7092: silence some py3k warnings

14 years ago#7092: Drop the cmp argument.
Florent Xicluna [Fri, 2 Apr 2010 08:15:26 +0000 (08:15 +0000)]
#7092: Drop the cmp argument.

14 years ago#7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute...
Florent Xicluna [Fri, 2 Apr 2010 07:24:52 +0000 (07:24 +0000)]
#7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports.

14 years agoCleanup itertools recipes
Raymond Hettinger [Fri, 2 Apr 2010 06:23:12 +0000 (06:23 +0000)]
Cleanup itertools recipes

14 years agoAdd and update itertools recipes.
Raymond Hettinger [Fri, 2 Apr 2010 02:44:31 +0000 (02:44 +0000)]
Add and update itertools recipes.

14 years ago#7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double...
Florent Xicluna [Thu, 1 Apr 2010 18:17:09 +0000 (18:17 +0000)]
#7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote.

14 years agoIssue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked
Antoine Pitrou [Thu, 1 Apr 2010 17:56:57 +0000 (17:56 +0000)]
Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked
as a regular test by regrtest.py, and fails.

14 years agoIssue #8276: PyEval_CallObject() is now only available in macro form. The
Antoine Pitrou [Thu, 1 Apr 2010 16:42:11 +0000 (16:42 +0000)]
Issue #8276: PyEval_CallObject() is now only available in macro form.  The
function declaration, which was kept for backwards compatibility reasons,
is now removed (the macro was introduced in 1997!).

14 years agoDocument link to Sorting HowTo
Raymond Hettinger [Thu, 1 Apr 2010 07:54:16 +0000 (07:54 +0000)]
Document link to Sorting HowTo

14 years agoIssue #8032: For gdb7, a python-gdb.py file is added to the build,
Martin v. Löwis [Thu, 1 Apr 2010 07:40:51 +0000 (07:40 +0000)]
Issue #8032: For gdb7, a python-gdb.py file is added to the build,
allowing to use advanced gdb features when debugging Python.

14 years agoFix a test_pydoc failure on Neal Norwitz's buildbot.
Brian Curtin [Thu, 1 Apr 2010 04:02:00 +0000 (04:02 +0000)]
Fix a test_pydoc failure on Neal Norwitz's buildbot.

14 years agoA couple small grammar fixes in test.rst, and rewrite the
R. David Murray [Thu, 1 Apr 2010 01:28:39 +0000 (01:28 +0000)]
A couple small grammar fixes in test.rst, and rewrite the
check_warnings docs to be clearer.

14 years agoAdd -Wd and -3 to the flags used to run the tests on Windows.
Ezio Melotti [Wed, 31 Mar 2010 22:43:31 +0000 (22:43 +0000)]
Add -Wd and -3 to the flags used to run the tests on Windows.

14 years agoAdd -Wd and -3 to the flags used to run the tests.
Ezio Melotti [Wed, 31 Mar 2010 22:18:09 +0000 (22:18 +0000)]
Add -Wd and -3 to the flags used to run the tests.

14 years agoReplace catch_warnings with check_warnings when it makes sense. Use assertRaises...
Florent Xicluna [Wed, 31 Mar 2010 22:01:03 +0000 (22:01 +0000)]
Replace catch_warnings with check_warnings when it makes sense.  Use assertRaises context manager to simplify some tests.

14 years agoFix typo
Florent Xicluna [Wed, 31 Mar 2010 21:40:32 +0000 (21:40 +0000)]
Fix typo

14 years agoIssue #8268: Old-style classes (not just instances) now support weak
Antoine Pitrou [Wed, 31 Mar 2010 21:32:15 +0000 (21:32 +0000)]
Issue #8268: Old-style classes (not just instances) now support weak
references.

14 years agoFix test for xml.etree when using a non-ascii path. And use check_warnings instead...
Florent Xicluna [Wed, 31 Mar 2010 21:21:54 +0000 (21:21 +0000)]
Fix test for xml.etree when using a non-ascii path.  And use check_warnings instead of catch_warnings.

14 years ago- Issue #8233: When run as a script, py_compile.py optionally takes a single
Barry Warsaw [Wed, 31 Mar 2010 21:07:16 +0000 (21:07 +0000)]
- Issue #8233: When run as a script, py_compile.py optionally takes a single
  argument `-` which tells it to read files to compile from stdin.  Each line
  is read on demand and the named file is compiled immediately.  (Original
  patch by Piotr Ożarowski).

14 years agoCorrect what was intended to be a single-tuple to just be a != check.
Brian Curtin [Wed, 31 Mar 2010 17:36:09 +0000 (17:36 +0000)]
Correct what was intended to be a single-tuple to just be a != check.
Thanks to Éric Araujo for noticing that.

14 years agoSilence a py3k warning.
Ezio Melotti [Wed, 31 Mar 2010 08:33:50 +0000 (08:33 +0000)]
Silence a py3k warning.

14 years agoRevert r79179 and merge r75584 to explain how to implement a queue using collection...
Ezio Melotti [Wed, 31 Mar 2010 07:26:24 +0000 (07:26 +0000)]
Revert r79179 and merge r75584 to explain how to implement a queue using collection.deque instead of a list.

14 years agoFix #8225. xml.etree was displaying an incorrect link when viewed in help.
Brian Curtin [Wed, 31 Mar 2010 03:10:21 +0000 (03:10 +0000)]
Fix #8225. xml.etree was displaying an incorrect link when viewed in help.

14 years agoRevert rev. 79509; ctypes doesn't build on linux.
Thomas Heller [Tue, 30 Mar 2010 20:57:06 +0000 (20:57 +0000)]
Revert rev. 79509; ctypes doesn't build on linux.

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