Sorry. There's one real change:
- validate_testlist(CHILD(tree, 3)) &&
+ validate_arglist(CHILD(tree, 3)) &&
On Nov 15, 2007 11:31 AM, Brett Cannon <[EMAIL PROTECTED]> wrote:
> Am I going blind, or is there only whitespace changes to
> parsermodule.c?
Am I going blind, or is there only whitespace changes to
parsermodule.c? If so, is there supposed to be a change there? Or is
the test the big deal?
-Brett
On Nov 15, 2007 11:17 AM, guido.van.rossum
wrote:
> Author: guido.van.rossum
> Date: Thu Nov 15 20:17:28 2007
> New Revision: 58987
>
> Mo
Author: thomas.heller
Date: Thu Nov 15 20:11:49 2007
New Revision: 58985
Modified:
python/branches/py3k/PCbuild/build_ssl.bat
Log:
On Win64, linking the python dll currently fails with 'unresolved
external symbol PyObject_Unicode'.
Building _ssl than hangs the build server because starting pyt
Author: guido.van.rossum
Date: Thu Nov 15 20:17:28 2007
New Revision: 58987
Modified:
python/branches/py3k/Lib/test/test_parser.py
python/branches/py3k/Modules/parsermodule.c
Log:
Patch 1144 by David Binger, fix for parser module. With unittest.
(I also cleared out all trailing whitespace in
Author: amaury.forgeotdarc
Date: Thu Nov 15 20:16:08 2007
New Revision: 58986
Modified:
python/branches/py3k/Objects/object.c
python/branches/py3k/Objects/rangeobject.c
Log:
Correct a memory leak: the range() object was not properly freed.
Modified: python/branches/py3k/Objects/object.c
=
Author: thomas.heller
Date: Thu Nov 15 21:03:00 2007
New Revision: 58990
Modified:
python/branches/py3k/Modules/_ctypes/_ctypes.c
python/branches/py3k/Modules/_ctypes/libffi_msvc/prep_cif.c
Log:
Fix two compiler warnings on Win64.
Modified: python/branches/py3k/Modules/_ctypes/_ctypes.c
==
Brett Cannon schrieb:
> Am I going blind, or is there only whitespace changes to
> parsermodule.c?
At least one code change is here:
>> res = ((validate_lparen(CHILD(tree, 2)) &&
>> - validate_testlist(CHILD(tree, 3)) &&
>> + validate_ar
Author: christian.heimes
Date: Thu Nov 15 20:57:43 2007
New Revision: 58989
Added:
python/branches/py3k/PCbuild8/_ssl/
python/branches/py3k/PCbuild8/_ssl/_ssl.vcproj (contents, props changed)
python/branches/py3k/PCbuild8/build_ssl.py (contents, props changed)
Modified:
python/bran
Author: amaury.forgeotdarc
Date: Thu Nov 15 21:52:21 2007
New Revision: 58993
Modified:
python/branches/py3k/Objects/object.c
python/branches/py3k/Objects/rangeobject.c
Log:
Found another memory leak in longrangeiter. And redo the previous correction
without calling PyType_Ready().
Questio
On Nov 15, 2007 12:52 PM, amaury.forgeotdarc
wrote:
> Question 1: Should the interpreter register all types with PyType_Ready()?
> Many types seem to avoid it.
This is because for many static types it barely matters. It would be
better if we could initialize all of them explicitly, but I'm not
lo
Author: thomas.heller
Date: Thu Nov 15 21:48:54 2007
New Revision: 58992
Modified:
python/branches/py3k/Include/object.h
python/branches/py3k/Modules/_csv.c
python/branches/py3k/Modules/_ctypes/callproc.c
python/branches/py3k/Modules/_testcapimodule.c
python/branches/py3k/Modules/cj
Author: amaury.forgeotdarc
Date: Thu Nov 15 22:36:47 2007
New Revision: 58996
Modified:
python/branches/py3k/PCbuild8/pcbuild.sln
Log:
Attempt to manually add _ssl to the PCBuild8 solution file.
Seems to start compiling.
Modified: python/branches/py3k/PCbuild8/pcbuild.sln
===
Author: bill.janssen
Date: Fri Nov 16 00:01:30 2007
New Revision: 58999
Added:
python/branches/py3k/Lib/test/svn_python_org_https_cert.pem (contents,
props changed)
Log:
add the certificate for the Python SVN repository for testing SSL
Added: python/branches/py3k/Lib/test/svn_python_org_htt
Author: amaury.forgeotdarc
Date: Fri Nov 16 00:19:43 2007
New Revision: 59001
Modified:
python/branches/py3k/Lib/test/test_coding.py
python/branches/py3k/Parser/tokenizer.c
Log:
Correction for issue1134: all source files with a coding spec, except latin-1
and utf-8, crashed when parsing a mu
Author: guido.van.rossum
Date: Fri Nov 16 01:06:11 2007
New Revision: 59003
Modified:
python/branches/py3k/Lib/ssl.py
Log:
Fix some minor style nits. (I'll leave adding __all__ and making the
docstrings conform to PEP 8 to someone else.)
Modified: python/branches/py3k/Lib/ssl.py
Author: christian.heimes
Date: Fri Nov 16 00:37:07 2007
New Revision: 59002
Modified:
python/branches/py3k/Modules/socketmodule.c
Log:
Fix for VS 2008
Although WS2_32.dll doesn't have inet_pton the definition conflicts with
ws2tcpip.h.
Modified: python/branches/py3k/Modules/socketmodule.c
===
On Nov 15, 2007 11:35 AM, Guido van Rossum <[EMAIL PROTECTED]> wrote:
> Sorry. There's one real change:
>
> - validate_testlist(CHILD(tree, 3)) &&
> + validate_arglist(CHILD(tree, 3)) &&
>
OK, so I am blind. =)
-Brett
>
> On Nov 15, 2007 11:31 AM, Bre
Author: guido.van.rossum
Date: Fri Nov 16 01:35:22 2007
New Revision: 59005
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Doc/library/collections.rst
python/branches/py3k/Doc/library/random.rst
python/branches/py3k/Lib/collections.py
python/branches/py3k/Lib
Author: amaury.forgeotdarc
Date: Fri Nov 16 01:56:23 2007
New Revision: 59008
Modified:
python/branches/py3k/Lib/test/test_coding.py
python/branches/py3k/Lib/test/test_import.py
Log:
Correct a failing test when test_import is run after test_coding:
be sure to import a fresh module by removin
Author: guido.van.rossum
Date: Fri Nov 16 02:24:05 2007
New Revision: 59009
Modified:
python/branches/py3k/Include/longobject.h
python/branches/py3k/Lib/socket.py
python/branches/py3k/Lib/ssl.py
python/branches/py3k/Lib/test/test_socket.py
python/branches/py3k/Modules/socketmodule.c
Author: guido.van.rossum
Date: Fri Nov 16 01:51:45 2007
New Revision: 59007
Modified:
python/branches/py3k/Parser/tokenizer.c
Log:
Cleanup of tokenizer.c.
Modified: python/branches/py3k/Parser/tokenizer.c
==
--- pytho
Author: guido.van.rossum
Date: Fri Nov 16 01:48:13 2007
New Revision: 59006
Modified:
python/branches/py3k/Lib/collections.py
Log:
Oops, forgot to test this after the merge.
Modified: python/branches/py3k/Lib/collections.py
=
Author: christian.heimes
Date: Fri Nov 16 03:14:19 2007
New Revision: 59011
Modified:
python/branches/py3k/PCbuild8/_tkinter/_tkinter.vcproj
python/branches/py3k/PCbuild8/pcbuild.sln
python/branches/py3k/PCbuild8/pyproject.vsprops
Log:
I finally figured out why _tkinter and _bsddb didn't
Author: guido.van.rossum
Date: Fri Nov 16 02:28:45 2007
New Revision: 59010
Modified:
python/branches/py3k/Lib/ssl.py
Log:
Disable dup() of SSLSocket. I don't think it can be made to work.
Modified: python/branches/py3k/Lib/ssl.py
=
Author: christian.heimes
Date: Fri Nov 16 03:35:02 2007
New Revision: 59012
Modified:
python/branches/py3k/PCbuild8/_tkinter/_tkinter.vcproj
Log:
Fixed an error in my last commit. The dll files are in the bin directory, not
in the lib directory.
Modified: python/branches/py3k/PCbuild8/_tkinte
Author: thomas.heller
Date: Fri Nov 16 08:00:30 2007
New Revision: 59016
Modified:
python/branches/py3k/Tools/buildbot/clean-amd64.bat
python/branches/py3k/Tools/buildbot/clean.bat
Log:
Use 'del' instead of rmpyc.py to remove the pyc and pyo files.
Modified: python/branches/py3k/Tools/buil
26 matches
Mail list logo