An error occurred fetching the project authors.
- 06 Mar, 2016 1 commit
-
-
Serhiy Storchaka authored
-
- 21 May, 2015 1 commit
-
-
Serhiy Storchaka authored
Clement Rouault.
-
- 15 Dec, 2014 1 commit
-
-
Serhiy Storchaka authored
-
- 18 Nov, 2012 3 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 03 Apr, 2012 1 commit
-
-
Kristján Valur Jónsson authored
-
- 02 Aug, 2010 1 commit
-
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79165 | florent.xicluna | 2010-03-21 03:14:24 +0200 (Sun, 21 Mar 2010) | 2 lines #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. ........
-
- 22 Jun, 2010 4 commits
-
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82167 | benjamin.peterson | 2010-06-22 15:32:02 -0500 (Tue, 22 Jun 2010) | 1 line mark ref counting as impl detail ........
-
Benjamin Peterson authored
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82165 | benjamin.peterson | 2010-06-22 15:26:20 -0500 (Tue, 22 Jun 2010) | 1 line must force gc here ........
-
Benjamin Peterson authored
-
- 21 Mar, 2010 1 commit
-
-
Florent Xicluna authored
-
- 23 Jan, 2010 1 commit
-
-
Ezio Melotti authored
-
- 19 Jan, 2010 1 commit
-
-
Benjamin Peterson authored
A patch from Dave Malcolm.
-
- 08 Jan, 2010 2 commits
-
-
Senthil Kumaran authored
mistake. ( It may come in for sure tough)
-
Senthil Kumaran authored
-
- 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
-
- 12 Jan, 2009 2 commits
-
-
Amaury Forgeot d'Arc authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68560 | amaury.forgeotdarc | 2009-01-13 00:36:55 +0100 (mar., 13 janv. 2009) | 6 lines #3720: Interpreter crashes when an evil iterator removes its own next function. Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0. ........
-
Amaury Forgeot d'Arc authored
Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
-
- 20 May, 2008 1 commit
-
-
Benjamin Peterson authored
-
- 22 Jan, 2008 1 commit
-
-
Raymond Hettinger authored
-
- 29 Aug, 2007 1 commit
-
-
Collin Winter authored
-
- 03 Jul, 2007 1 commit
-
-
Guido van Rossum authored
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines Fix a place where floor division would be in order. ........ r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines Make map() and filter() identical to itertools.imap() and .ifilter(), respectively. I fixed two bootstrap issues, due to the dynamic import of itertools: 1. Starting python requires that map() and filter() are not used until site.py has added build/lib.<arch> to sys.path. 2. Building python requires that setup.py and distutils and everything they use is free of map() and filter() calls. Beyond this, I only fixed the tests in test_builtin.py. Others, please help fixing the remaining tests that are now broken! The fixes are usually simple: a. map(None, X) -> list(X) b. map(F, X) -> list(map(F, X)) c. map(lambda x: F(x), X) -> [F(x) for x in X] d. filter(F, X) -> list(filter(F, X)) e. filter(lambda x: P(x), X) -> [x for x in X if P(x)] Someone, please also contribute a fixer for 2to3 to do this. It can leave map()/filter() calls alone that are already inside a list() or sorted() call or for-loop. Only in rare cases have I seen code that depends on map() of lists of different lengths going to the end of the longest, or on filter() of a string or tuple returning an object of the same type; these will need more thought to fix. ........ r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines Make it so that test_decimal fails instead of hangs, to help automated test runners. ........ r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines Fix a few test cases after the map->imap change. ........ r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line Get a bunch more tests passing after converting map/filter to return iterators. ........ r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines Fix the remaining failing unit tests (at least on OSX). Also tweaked urllib2 so it doesn't raise socket.gaierror when all network interfaces are turned off. ........
-
- 11 Jun, 2007 1 commit
-
-
Walter Dörwald authored
that already is a string or the existence of the str class is checked or a check is done for str twice. These all stem from the initial unicode->str replacement.
-
- 22 May, 2007 1 commit
-
-
Walter Dörwald authored
normal code (or drop them if they only repeat previous tests).
-
- 07 May, 2007 1 commit
-
-
Guido van Rossum authored
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55077 | guido.van.rossum | 2007-05-02 11:54:37 -0700 (Wed, 02 May 2007) | 2 lines Use the new print syntax, at least. ........ r55142 | fred.drake | 2007-05-04 21:27:30 -0700 (Fri, 04 May 2007) | 1 line remove old cruftiness ........ r55143 | fred.drake | 2007-05-04 21:52:16 -0700 (Fri, 04 May 2007) | 1 line make this work with the new Python ........ r55162 | neal.norwitz | 2007-05-06 22:29:18 -0700 (Sun, 06 May 2007) | 1 line Get asdl code gen working with Python 2.3. Should continue to work with 3.0 ........ r55164 | neal.norwitz | 2007-05-07 00:00:38 -0700 (Mon, 07 May 2007) | 1 line Verify checkins to p3yk (sic) branch go to 3000 list. ........ r55166 | neal.norwitz | 2007-05-07 00:12:35 -0700 (Mon, 07 May 2007) | 1 line Fix this test so it runs again by importing warnings_test properly. ........ r55167 | neal.norwitz | 2007-05-07 01:03:22 -0700 (Mon, 07 May 2007) | 8 lines So long xrange. range() now supports values that are outside -sys.maxint to sys.maxint. floats raise a TypeError. This has been sitting for a long time. It probably has some problems and needs cleanup. Objects/rangeobject.c now uses 4-space indents since it is almost completely new. ........ r55171 | guido.van.rossum | 2007-05-07 10:21:26 -0700 (Mon, 07 May 2007) | 4 lines Fix two tests that were previously depending on significant spaces at the end of a line (and before that on Python 2.x print behavior that has no exact equivalent in 3.0). ........
-
- 02 May, 2007 1 commit
-
-
Guido van Rossum authored
-
- 21 Apr, 2007 1 commit
-
-
Georg Brandl authored
-
- 22 Feb, 2007 1 commit
-
-
Brett Cannon authored
-
- 11 Feb, 2007 1 commit
-
-
Guido van Rossum authored
and .keys(), .items(), .values() return dict views. The dict views aren't fully functional yet; in particular, they can't be compared to sets yet. but they are useful as "iterator wells". There are still 27 failing unit tests; I expect that many of these have fairly trivial fixes, but there are so many, I could use help.
-
- 28 Nov, 2006 1 commit
-
-
Jack Diederich authored
- Renamed nb_nonzero slots to nb_bool - Renamed __nonzero__ methods to __bool__ - update core, lib, docs, and tests to match
-
- 24 Aug, 2006 2 commits
-
-
Guido van Rossum authored
I mea, *really* equal -- for now, the implementation just imports itertools. :-) The only other changes necessary were various unit tests that were assuming zip() returns a real list. No "real" code made this assumption.
-
Alex Martelli authored
in the stdlib and changed each of them to use "open" instead. At this time there are no other known occurrences that can be safely changed (in Lib and all subdirectories thereof).
-
- 22 Aug, 2006 1 commit
-
-
Guido van Rossum authored
-
- 02 Aug, 2003 1 commit
-
-
Raymond Hettinger authored
by returning an empty list instead of raising a TypeError.
-
- 23 Dec, 2002 1 commit
-
-
Tim Peters authored
-
- 06 Aug, 2002 1 commit
-
-
Guido van Rossum authored
-