Activity by year and month
authors by first/last commit
|
| 78885 12.03.2010 23:48:16, by
ezio.melotti
Merged revisions 78884 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k
........ r78884 | ezio.melotti | 2010-03-13 00:45:38 +0200 (Sat, 13 Mar 2010) | 1 line #8057: fix strings -> byte strings ........
M
/python/branches/release31-maint
M
/python/branches/release31-maint/Doc/library/bz2.rst
|
| 78884 12.03.2010 23:45:38, by
ezio.melotti
#8057: fix strings -> byte strings
M
/python/branches/py3k/Doc/library/bz2.rst
|
| 78883 12.03.2010 22:30:42, by
georg.brandl
Merged revisions 78882 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k
................ r78882 | georg.brandl | 2010-03-12 22:29:28 +0100 (Fr, 12 Mär 2010) | 9 lines Merged revisions 78880 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78880 | georg.brandl | 2010-03-12 22:27:23 +0100 (Fr, 12 Mär 2010) | 1 line Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine. ........ ................
M
/python/branches/release31-maint
M
/python/branches/release31-maint/Misc/build.sh
|
| 78882 12.03.2010 22:29:28, by
georg.brandl
Merged revisions 78880 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
........ r78880 | georg.brandl | 2010-03-12 22:27:23 +0100 (Fr, 12 Mär 2010) | 1 line Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine. ........
M
/python/branches/py3k
M
/python/branches/py3k/Misc/build.sh
|
| 78881 12.03.2010 22:29:25, by
georg.brandl
Merged revisions 78880 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
........ r78880 | georg.brandl | 2010-03-12 22:27:23 +0100 (Fr, 12 Mär 2010) | 1 line Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine. ........
M
/python/branches/release26-maint
M
/python/branches/release26-maint/Misc/build.sh
|
| 78880 12.03.2010 22:27:23, by
georg.brandl
Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine.
M
/python/trunk/Misc/build.sh
|
| 78879 12.03.2010 21:38:41, by
martin.v.loewis
Issue #316: Work around 1.4.10 bug requiring users to have Edit permission on files in order to create attachments.
M
/tracker/instances/jython/schema.py
|
| 78878 12.03.2010 19:40:11, by
phillip.eby
Fix wrong keyword argument for specifying test tunner to unittest
M
/sandbox/trunk/setuptools/setuptools/command/test.py
|
| 78877 12.03.2010 19:27:13, by
tarek.ziade
Merged revisions 78707,78709 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
........ r78707 | tarek.ziade | 2010-03-05 20:18:27 -0500 (Fri, 05 Mar 2010) | 1 line provide a fallback for xxmodule.c in case the buildir is not present ........ r78709 | tarek.ziade | 2010-03-05 20:23:21 -0500 (Fri, 05 Mar 2010) | 1 line simplified the fallback case ........
M
/python/branches/release26-maint
M
/python/branches/release26-maint/Lib/distutils/tests/test_build_ext.py
A
/python/branches/release26-maint/Lib/distutils/tests/xxmodule.c
M
/python/branches/release26-maint/Misc/NEWS
|
| 78876 12.03.2010 18:17:58, by
victor.stinner
Issue #6697: catch _PyUnicode_AsString() errors in getattr() and setattr() builtin functions.
M
/python/branches/py3k/Lib/test/test_builtin.py
M
/python/branches/py3k/Objects/object.c
|
| 78875 12.03.2010 18:00:41, by
victor.stinner
Issue #6697: use %U format instead of _PyUnicode_AsString(), because _PyUnicode_AsString() was not checked for error (NULL).
The unicode string is no more truncated to 200 or 400 *bytes*.
M
/python/branches/py3k/Modules/_hashopenssl.c
M
/python/branches/py3k/Modules/zipimport.c
M
/python/branches/py3k/Objects/funcobject.c
M
/python/branches/py3k/Objects/typeobject.c
M
/python/branches/py3k/Python/ceval.c
M
/python/branches/py3k/Python/import.c
|
| 78874 12.03.2010 16:45:35, by
kristjan.jonsson
Fix incorrect file in the stackless unittests.
M
/stackless/branches/release26-maint/Stackless/unittests/test_defects.py
|
| 78873 12.03.2010 15:47:28, by
victor.stinner
Blocked revisions 78827 via svnmerge
........ r78827 | victor.stinner | 2010-03-10 23:45:04 +0100 (mer., 10 mars 2010) | 4 lines ooops, fix error message in execusercustomize() Copy/paste failure :-) ........
M
/python/branches/py3k
|
| 78872 12.03.2010 15:45:56, by
victor.stinner
Merged revisions 78826 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
........ r78826 | victor.stinner | 2010-03-10 23:30:19 +0100 (mer., 10 mars 2010) | 5 lines Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt (SIGINT). If an error occurs while importing the site module, the error is printed and Python exits. Initialize the GIL before importing the site module. ........
M
/python/branches/py3k
M
/python/branches/py3k/Lib/site.py
M
/python/branches/py3k/Misc/NEWS
M
/python/branches/py3k/Modules/main.c
M
/python/branches/py3k/Parser/tokenizer.c
M
/python/branches/py3k/Python/import.c
M
/python/branches/py3k/Python/pythonrun.c
|
| 78871 12.03.2010 15:31:06, by
victor.stinner
Blocked revisions 78870 via svnmerge
........ r78870 | victor.stinner | 2010-03-12 15:30:26 +0100 (ven., 12 mars 2010) | 1 line NEWS: issue #7774 is related to Library (sys), not Core and Builtins ........
M
/python/branches/py3k
|
| 78870 12.03.2010 15:30:26, by
victor.stinner
NEWS: issue #7774 is related to Library (sys), not Core and Builtins
M
/python/trunk/Misc/NEWS
|
| 78869 12.03.2010 15:27:16, by
victor.stinner
Oops, I loose the NEWS change in my previous backport (r78868) of r78835.
M
/python/branches/py3k/Misc/NEWS
|
| 78868 12.03.2010 15:20:59, by
victor.stinner
Merged revisions 78835-78837 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
........ r78835 | victor.stinner | 2010-03-11 13:34:39 +0100 (jeu., 11 mars 2010) | 7 lines Issue #7774: Set sys.executable to an empty string if argv[0] has been set to an non existent program name and Python is unable to retrieve the real program name. Fix also sysconfig: if sys.executable is an empty string, use the current working directory. ........ r78836 | victor.stinner | 2010-03-11 14:27:35 +0100 (jeu., 11 mars 2010) | 4 lines Fix test_executable introduce in previous commit (r78835): Windows is able to retrieve the absolute Python path even if argv[0] has been set to a non existent program name. ........ r78837 | victor.stinner | 2010-03-11 14:46:06 +0100 (jeu., 11 mars 2010) | 3 lines Another fix to test_executable() of test_sys: set the current working to avoid the #7774 bug. ........
M
/python/branches/py3k
M
/python/branches/py3k/Lib/sysconfig.py
M
/python/branches/py3k/Lib/test/test_sys.py
M
/python/branches/py3k/Modules/getpath.c
|
| 78867 12.03.2010 14:13:07, by
kristjan.jonsson
Merged revisions 78865 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/branches/py3k
................ r78865 | kristjan.jonsson | 2010-03-12 11:55:11 +0000 (f÷s., 12 mar. 2010) | 48 lines Merged revisions 76512,77611-77613,77620-77621,78856-78857 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/trunk ................ r76512 | kristjan.jonsson | 2009-11-25 17:06:59 +0000 (miΓëÃ., 25 nΓëñv. 2009) | 1 line Get rid of the proprietary ZAP macros and use Py_CLEAR instead. ................ r77611 | kristjan.jonsson | 2010-01-19 22:33:25 +0000 (Γûári., 19 jan. 2010) | 2 lines Adding a module to regression test various defects. Initial version contains a disabled test for a problem with __del__ in tasklet main function return values. ................ r77612 | kristjan.jonsson | 2010-01-19 23:10:33 +0000 (Γûári., 19 jan. 2010) | 1 line Fix a problem where a __del__ statement could cause stackless protocol violations. ................ r77613 | kristjan.jonsson | 2010-01-20 13:13:17 +0000 (miΓëÃ., 20 jan. 2010) | 1 line Fix the last fix. Also make sure that a tasklet's __del__ method doesn't cause a crash. ................ r77620 | kristjan.jonsson | 2010-01-21 10:29:49 +0000 (fim., 21 jan. 2010) | 1 line Adding another disabled unittest for a defect: stackless.schedule_remove() doesn't work if it is the only runnable tasklet. ................ r77621 | kristjan.jonsson | 2010-01-21 11:05:52 +0000 (fim., 21 jan. 2010) | 1 line Fix problems with stackless.schedule_remove() when the current tasklet is the last runnable tasklet (it would behave as stackless.schedule()) ................ r78856 | kristjan.jonsson | 2010-03-12 09:24:41 +0000 (f├╖s., 12 mar. 2010) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-78853" from svn+ssh://pythondev@svn.python.org/stackless/branches/release26-maint ................ r78857 | kristjan.jonsson | 2010-03-12 09:28:30 +0000 (f├╖s., 12 mar. 2010) | 11 lines Merged revisions 78854 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/branches/release26-maint ........ r78854 | kristjan.jonsson | 2010-03-12 08:29:59 +0000 (fΓö£Γòûs., 12 mar. 2010) | 3 lines Two fixes to stack spilling in stackless: 1) for low values of CSTACK_WATERMARK, stack spilling could be triggered before stackless initialization. Ignore those cases 2) When transfering back from the spilled stack to the original stack, be sure to preserve the current tasklet's tempval. This may contain the send value on a channel send(), for example and must not be lcobbered. ........ ................ ................
M
/stackless/branches/release31-maint
M
/stackless/branches/release31-maint/Stackless/core/stacklesseval.c
M
/stackless/branches/release31-maint/Stackless/module/scheduling.c
M
/stackless/branches/release31-maint/Stackless/module/stacklessmodule.c
A
/stackless/branches/release31-maint/Stackless/unittests/test_defects.py
|
| 78866 12.03.2010 14:10:48, by
kristjan.jonsson
Merged revisions 78865 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/branches/py3k
................ r78865 | kristjan.jonsson | 2010-03-12 11:55:11 +0000 (f÷s., 12 mar. 2010) | 48 lines Merged revisions 76512,77611-77613,77620-77621,78856-78857 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/trunk ................ r76512 | kristjan.jonsson | 2009-11-25 17:06:59 +0000 (miΓëÃ., 25 nΓëñv. 2009) | 1 line Get rid of the proprietary ZAP macros and use Py_CLEAR instead. ................ r77611 | kristjan.jonsson | 2010-01-19 22:33:25 +0000 (Γûári., 19 jan. 2010) | 2 lines Adding a module to regression test various defects. Initial version contains a disabled test for a problem with __del__ in tasklet main function return values. ................ r77612 | kristjan.jonsson | 2010-01-19 23:10:33 +0000 (Γûári., 19 jan. 2010) | 1 line Fix a problem where a __del__ statement could cause stackless protocol violations. ................ r77613 | kristjan.jonsson | 2010-01-20 13:13:17 +0000 (miΓëÃ., 20 jan. 2010) | 1 line Fix the last fix. Also make sure that a tasklet's __del__ method doesn't cause a crash. ................ r77620 | kristjan.jonsson | 2010-01-21 10:29:49 +0000 (fim., 21 jan. 2010) | 1 line Adding another disabled unittest for a defect: stackless.schedule_remove() doesn't work if it is the only runnable tasklet. ................ r77621 | kristjan.jonsson | 2010-01-21 11:05:52 +0000 (fim., 21 jan. 2010) | 1 line Fix problems with stackless.schedule_remove() when the current tasklet is the last runnable tasklet (it would behave as stackless.schedule()) ................ r78856 | kristjan.jonsson | 2010-03-12 09:24:41 +0000 (f├╖s., 12 mar. 2010) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-78853" from svn+ssh://pythondev@svn.python.org/stackless/branches/release26-maint ................ r78857 | kristjan.jonsson | 2010-03-12 09:28:30 +0000 (f├╖s., 12 mar. 2010) | 11 lines Merged revisions 78854 via svnmerge from svn+ssh://pythondev@svn.python.org/stackless/branches/release26-maint ........ r78854 | kristjan.jonsson | 2010-03-12 08:29:59 +0000 (fΓö£Γòûs., 12 mar. 2010) | 3 lines Two fixes to stack spilling in stackless: 1) for low values of CSTACK_WATERMARK, stack spilling could be triggered before stackless initialization. Ignore those cases 2) When transfering back from the spilled stack to the original stack, be sure to preserve the current tasklet's tempval. This may contain the send value on a channel send(), for example and must not be lcobbered. ........ ................ ................
M
/stackless/branches/release30-maint
M
/stackless/branches/release30-maint/Stackless/core/stacklesseval.c
M
/stackless/branches/release30-maint/Stackless/module/scheduling.c
M
/stackless/branches/release30-maint/Stackless/module/stacklessmodule.c
|
|
|
|