An error occurred fetching the project authors.
- 16 May, 2016 2 commits
-
-
Serhiy Storchaka authored
in PyArg_ParseTuple().
-
Serhiy Storchaka authored
-
- 08 May, 2016 1 commit
-
-
Serhiy Storchaka authored
unscathed to the C-defined function. Now it is converted to exact dict.
-
- 07 Feb, 2016 1 commit
-
-
Serhiy Storchaka authored
overflow in parsing "es#" and "et#" format units. SystemError is now raised instead of TypeError on programmical error in parsing format string.
-
- 28 Jan, 2016 1 commit
-
-
Serhiy Storchaka authored
of PyArg_Parse*() functions.
-
- 17 Feb, 2015 1 commit
-
-
Serhiy Storchaka authored
-
- 06 Sep, 2014 1 commit
-
-
Serhiy Storchaka authored
argument contains not permitted null character or byte.
-
- 07 Feb, 2014 1 commit
-
-
Serhiy Storchaka authored
-
- 14 Dec, 2013 1 commit
-
-
Serhiy Storchaka authored
-
- 11 Dec, 2013 1 commit
-
-
Serhiy Storchaka authored
return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
-
- 13 Jun, 2013 1 commit
-
-
Brett Cannon authored
instead of manually listing tests for test.support.run_unittest().
-
- 26 Mar, 2013 1 commit
-
-
Victor Stinner authored
-
- 05 May, 2012 1 commit
-
-
Larry Hastings authored
-
- 20 Mar, 2012 1 commit
-
-
Larry Hastings authored
They're optional-only for now (unlike in pure Python) but that's all I needed. The syntax can easily be relaxed if we want to support required keyword-only arguments for extension types in the future.
-
- 29 Jul, 2011 1 commit
-
-
Eli Bendersky authored
As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen
-
- 18 Jan, 2011 1 commit
-
-
Antoine Pitrou authored
Initial patch by Ross Lagerwall.
-
- 21 Nov, 2010 2 commits
-
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
- 20 Nov, 2010 1 commit
-
-
Ezio Melotti authored
-
- 25 Jun, 2010 1 commit
-
-
Victor Stinner authored
"w*" format instead. Add tests for "w*" format.
-
- 24 Jun, 2010 1 commit
-
-
Victor Stinner authored
objects, as described in the documentation.
-
- 13 Jun, 2010 1 commit
-
-
Victor Stinner authored
formats if the string contains a null byte/character. Write unit tests for string formats.
-
- 10 Jun, 2010 1 commit
-
-
Mark Dickinson authored
instead of warning. This makes it consistent with the other integer codes.
-
- 19 May, 2010 1 commit
-
-
Victor Stinner authored
-
- 01 Jan, 2010 2 commits
-
-
Mark Dickinson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77218 | mark.dickinson | 2010-01-01 17:27:30 +0000 (Fri, 01 Jan 2010) | 5 lines Issue #5080: turn the DeprecationWarning from float arguments passed to integer PyArg_Parse* format codes into a TypeError. Add a DeprecationWarning for floats passed with the 'L' format code, which didn't previously have a warning. ........
-
Mark Dickinson authored
to integer PyArg_Parse* format codes into a TypeError. Add a DeprecationWarning for floats passed with the 'L' format code, which didn't previously have a warning.
-
- 20 Dec, 2009 2 commits
-
-
Mark Dickinson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76930 | mark.dickinson | 2009-12-20 15:57:56 +0000 (Sun, 20 Dec 2009) | 1 line Add missing tests for PyArg_Parse* with format 'h' ........
-
Mark Dickinson authored
-
- 05 Dec, 2009 1 commit
-
-
Mark Dickinson authored
references to long in py3k. Patch provided by flox.
-
- 13 Aug, 2009 1 commit
-
-
Georg Brandl authored
svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
-
- 30 Jun, 2009 2 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 20 May, 2008 1 commit
-
-
Benjamin Peterson authored
-
- 22 Apr, 2008 1 commit
-
-
Trent Nelson authored
Issue 2440: remove the guard around the handling of case 'n' in getargs.c's convertsimple() such that we always treat it as an index type, regardless of whether or not sizeof(size_t) == sizeof(long). Fix the test_args2.Signed_TestCase.test_n() such that it tests for adherence to PEP 357 (don't try and coerce objects that don't have nb_index slots but do have nb_int slots (i.e. floats) into indexes 'just because we can'). Three other commits are related to this one: r62269 and r62279, which were changes to PyNumber_Index (among other things) to check for nb_int slots when we lack nb_index slots -- and r62292, which is when I reverted these changes after various people pointed out that the test was in fact wrong, not the code.
-
- 11 Apr, 2008 1 commit
-
-
Trent Nelson authored
Issue 2440: revert r62269 and r62279. These changes were made in an effort to fix test_args2.Signed_TestCase.test_n(), which was failing on Windows x64 on the following line: 'self.failUnlessEqual(99, getargs_n(Long()))'. Although the two commits *did* fix the test on Windows x64, it's become clear that it's the test that's incorrect, and the changes to PyNumber_Index() in particular were not warranted (and actually violate PEP 357). This commit will get us back to where we were at r62268, before I started butchering things.
-
- 10 Apr, 2008 1 commit
-
-
Trent Nelson authored
Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), extend Objects/abstract.c's PyNumber_Index() to accept PyObjects that have nb_int slots, and update test_getargs2 to test that an exception is thrown when __int__() returns a non-int object.
-
- 28 Feb, 2008 1 commit
-
-
Christian Heimes authored
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r61081 | neal.norwitz | 2008-02-26 09:04:59 +0100 (Tue, 26 Feb 2008) | 7 lines Speed up this test by about 99%. Remove sleeps and replace with events. (This may fail on some slow platforms, but we can fix those cases which should be relatively isolated and easier to find now.) Move two test cases that didn't require a server to be started to a separate TestCase. These tests were taking 3 seconds which is what the timeout was set to. ........ r61082 | christian.heimes | 2008-02-26 09:18:11 +0100 (Tue, 26 Feb 2008) | 1 line The contains function raised a gcc warning. The new code is copied straight from py3k. ........ r61084 | neal.norwitz | 2008-02-26 09:21:28 +0100 (Tue, 26 Feb 2008) | 3 lines Add a timing flag to Trace so you can see where slowness occurs like waiting for socket timeouts in test_smtplib :-). ........ r61086 | christian.heimes | 2008-02-26 18:23:51 +0100 (Tue, 26 Feb 2008) | 3 lines Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg My tests don't show the promised speed up of 10%. The code is as fast as the old code for simple cases and slightly faster for complex cases with several of args and kwargs. But the patch simplifies the code, too. ........ r61087 | georg.brandl | 2008-02-26 20:13:45 +0100 (Tue, 26 Feb 2008) | 2 lines #2194: fix some typos. ........ r61088 | raymond.hettinger | 2008-02-27 00:40:50 +0100 (Wed, 27 Feb 2008) | 1 line Add itertools.combinations(). ........ r61089 | raymond.hettinger | 2008-02-27 02:08:04 +0100 (Wed, 27 Feb 2008) | 1 line One too many decrefs. ........ r61090 | raymond.hettinger | 2008-02-27 02:08:30 +0100 (Wed, 27 Feb 2008) | 1 line Larger test range ........ r61091 | raymond.hettinger | 2008-02-27 02:44:34 +0100 (Wed, 27 Feb 2008) | 1 line Simply the sample code for combinations(). ........
-
- 26 Feb, 2008 1 commit
-
-
Christian Heimes authored
My tests don't show the promised speed up of 10%. The code is as fast as the old code for simple cases and slightly faster for complex cases with several of args and kwargs. But the patch simplifies the code, too.
-
- 23 Feb, 2008 2 commits
-
-
Christian Heimes authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line Removed duplicate Py_CHARMASK define. It's already defined in Python.h. ........ r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. ........ r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line #835521: Add index entries for various pickle-protocol methods and attributes ........ r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines #1433694: minidom's .normalize() failed to set .nextSibling for last element. Fix by Malte Helmert ........ r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line Patch #2167 from calvin: Remove unused imports ........ r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line Patch #1957: syslogmodule: Release GIL when calling syslog(3) ........ r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines Issue #2051 and patch from Alexander Belopolsky: Permission for pyc and pyo files are inherited from the py file. ........
-
Christian Heimes authored
-