Re: [Python-Dev] marshal and ssize_t (PEP 353)

2007-05-15 Thread Neal Norwitz
On 5/15/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > I'm looking at Python/marshal.c and there are a lot of places that > > don't support sequences that are larger than would fit into size(int). > > I looked for marshal referenced in the PEP and didn't find anything. > > Was this an oversig

Re: [Python-Dev] marshal and ssize_t (PEP 353)

2007-05-15 Thread Guido van Rossum
On 5/15/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > I'm looking at Python/marshal.c and there are a lot of places that > > don't support sequences that are larger than would fit into size(int). > > I looked for marshal referenced in the PEP and didn't find anything. > > Was this an oversig

Re: [Python-Dev] marshal and ssize_t (PEP 353)

2007-05-15 Thread Martin v. Löwis
Ah, forgot to mention that a browsable version of the branch is at http://svn.python.org/view/python/branches/ssize_t/?rev=42382 Unfortunately, you cannot check out that URL. OTOH, you can checkout "peg revisions" (I have no clue what a peg is) http://svn.python.org/projects/python/branches/[EMA

Re: [Python-Dev] marshal and ssize_t (PEP 353)

2007-05-15 Thread Martin v. Löwis
> I'm looking at Python/marshal.c and there are a lot of places that > don't support sequences that are larger than would fit into size(int). > I looked for marshal referenced in the PEP and didn't find anything. > Was this an oversight or intentional? These changes were only made after merging th

[Python-Dev] marshal and ssize_t (PEP 353)

2007-05-15 Thread Neal Norwitz
Martin, I'm looking at Python/marshal.c and there are a lot of places that don't support sequences that are larger than would fit into size(int). I looked for marshal referenced in the PEP and didn't find anything. Was this an oversight or intentional? To give you some examples of what I mean fr