Terry Reedy udel.edu> writes:
>
> 3.1a1 is out and I believe it has the io improvements.
Massive ones, too. It'd be interesting to see your results on the alpha.
--
http://mail.python.org/mailman/listinfo/python-list
Sean att.net> writes:
>
> Anyone got any thoughts about what to use as a replacement. I need
> something (like bsddb) which uses dictionary syntax to read and write an
> underlying (fast!) btree or similar.
pybsddb is just not included in the core. It's still distributed separately.
http://w
Filip Gruszczyński gmail.com> writes:
> I would like to ask if there is any workaround?
Use the runpy module.
--
http://mail.python.org/mailman/listinfo/python-list
corning.com> writes:
> Please, what is a better way to write the class with
> regard to this issue?
Set the original TextIOWrapper's buffer to None.
--
http://mail.python.org/mailman/listinfo/python-list
Gabriel Genellina yahoo.com.ar> writes:
>
> There is another alternative that relies on undocumented behaviour: use
> open to create a *binary* file and wrap the resulting BufferedReader
> object in your own TextIOWrapper.
How is that undocumented behavior? TextIOWrapper can wrap any buffer
It's GSoC time again, and I've had lots of interested students asking about
doing on project on improving 2to3. What kinds of improvements and features
would you like to see in it which student programmers could accomplish?
--
http://mail.python.org/mailman/listinfo/python-list
Gabriel Genellina yahoo.com.ar> writes:
>
> The undocumented behavior is relying on the open() builtin to return a
> BufferedReader for a binary file.
I don't see the problem. open() will return some BufferedIOBase implmentor, and
that's all that TextIOWrapper needs.
--
http://mail.python.
Gabriel Genellina yahoo.com.ar> schrieb:
>
> How do you know? AFAIK, the return value of open() is completely
> undocumented:
> http://docs.python.org/3.0/library/functions.html#open
> And if you open the file in text mode, the return value isn't a
> BufferedIOBase.
Oh, I see. I should chan
Kay Schluehr gmx.net> writes:
>
> On 22 Mrz., 20:39, Benjamin Peterson wrote:
> > It's GSoC time again, and I've had lots of interested students asking about
> > doing on project on improving 2to3. What kinds of improvements and features
> > woul
Nick Edds uchicago.edu> writes:
>
>
> Ahh sorry. This was in Python 2.5.
There's still a builtin AST module in 2.5: _ast
--
http://mail.python.org/mailman/listinfo/python-list
http://www.python.org/dev/peps/pep-0375/
Regards,
-- Benjamin
Benjamin Peterson
benjamin at python.org
Release Manager
(on behalf of the entire python-dev team and 3.1's contributors)
--
http://mail.python.org/mailman/listinfo/python-list
Ross gmail.com> writes:
> Can you guys help me out?
Do you have Python 2.6? If so, it's a solved problem. :)
import itertools
possible_pairings = list(itertools.combinations(players, 2))
--
http://mail.python.org/mailman/listinfo/python-list
Kay Schluehr gmx.net> writes:
>
> I always wondered about the decision to omit the nonlocal statement
> from the Python 2.X series because it seems to be orthogonal to Python
> 2.5. Are there any chances for it to be back ported?
The only reason it was not backported was that either no one prov
Carl Banks gmail.com> writes:
> However, Python apparently does leak a reference if passed a Unicode
> object; PyArg_ParseTuple automatically creates an encoded string but
> never decrefs it. (That might be necessary evil to preserve
> compatibility, though. PyString_AS_STRING does it too.)
Uni
srinivasan srinivas yahoo.co.in> writes:
>
>
> Hi,
> I would like to know about the unittest.TestSuite clearly like at what
situations i can use this TestSuite?
> I am not getting the clear difference between this and unittest.TestCase.
You write your actual tests with TestCase. A TestSuite st
Brendan Miller catphive.net> writes:
>
> What's the point of PyHeapTypeObject in Include/object.h? Why does the
> layout of object types need to be different on the heap vs statically
> allocated?
Heap types have to do some extra book-keeping like garbage collection.
--
http://mail.python.o
Steven D'Aprano REMOVE-THIS-cybersource.com.au> writes:
>
> which suggests to me that it will be implementation dependent
The length of sequences is constrained by sys.maxsize
(and no, you can't change it).
--
http://mail.python.org/mailman/listinfo/python-list
Deep_Feelings gmail.com> writes:
>
> I want to start learning python and not wanna waste my time learning
> python 2.x ,so i need your advise to what IDE to use for python 3.0.1
Why do you think you're wasting time with 2.x?
--
http://mail.python.org/mailman/listinfo/python-list
Borked Pseudo Mailed pseudo.borked.net>
writes:
>
> Hello,
>
> Is there any interest in generational garbage
> collection
> in Python these days ?
>
> Anyone working on it ?
The PyPy project has implemented more GC's than you want to
think about
including a ref counting gc, mark-sweep, and
se
gmail.com> writes:
>
> There are reasons why Python not used the GMP library for implementing
> its long type?
Basically, GMP only becomes faster when the numbers are huge.
--
http://mail.python.org/mailman/listinfo/python-list
rahul gmail.com> writes:
>
> Is PyCodec_Encode(PyObject *object,char *encoding,char *errors )
> returns New reference or Borrowed reference
New
--
http://mail.python.org/mailman/listinfo/python-list
Chris Rebert rebertia.com> writes:
> Common wart to run into as of late. fn (in the lambda) doesn't get
> evaluated until the call-time of the lambda, by which point the loop
> has finished and the loop variable has been changed to its final
> value, which is used by the lambda.
How is that a war
Lawson English cox.net> writes:
>
> Marshalling is only briefly mentioned in most python books I have, and
> "pickling" is declared teh preferred method for serialization.
>
> I read somewhere that Marshalling is version-dependent while pickling is
> not, but can't find that reference. OTOH,
bsite:
http://www.python.org/download/releases/3.1/
See PEP 375 for release schedule details:
http://www.python.org/dev/peps/pep-0375/
Enjoy,
-- Benjamin
Benjamin Peterson
benjamin at python.org
Release Manager
(on behalf of the entire python-dev team and 3.1's contributor
bsite:
http://www.python.org/download/releases/3.1/
See PEP 375 for release schedule details:
http://www.python.org/dev/peps/pep-0375/
Enjoy,
-- Benjamin
Benjamin Peterson
benjamin at python.org
Release Manager
(on behalf of the entire python-dev team and 3.1's contributor
latinmail.com> writes:
> Congratulations!
Thanks!
>
> Is it just me or was some nice summary output added to the make
> process? I get a nice list of modules that didn't compile and the ones
> where the library could not be found.
Are you compiling on a different platform? The nice output has
lycos.com> writes:
>
> collections.Counter and collections.OrderedDict: very nice and useful.
> Is the order inside OrderedDict kept with a double linked list of the
> items?
There's a doubly-linked list containing the values. Another dictionary maps keys
to the list.
--
http://mail.python.
Stephen Vavasis cpu111.math.uwaterloo.ca> writes:
>
> If x is a C variable of type PyObject*, and I happen to know already that
> the object is of a numeric type, say int, is there a way to change the
> value of x in place to a different number? In the C/API documentation I
> found routines
Adrian Dragulescu eskimo.com> writes:
>
>
> I just started to learn python (first posting to the list).
>
> I have a list of dates as strings that I want to convert to a
> list of datetime objects. Here is my debugging session from inside a
> method.
>
> (Pdb) formatIndex
> '%Y-%m-%d'
> (
Matthew Wilson tplus1.com> writes:
>
> I use a @property decorator to turn some methods on a class into
> properties. I want to be able to access some of the attributes of the
> original funtion, but I don't know how to get to it.
my_class.__dict__["some_property].(fget|fdel|fset)
--
http:
Joachim Dahl gmail.com> writes:
>
> How do I perform type checking for such an object in the extension
> module,
> and how do I extract a FILE * object from it? I browsed the C API
> documentation, but
> couldn't find an answer.
You use PyObject_IsInstance to test if the object is an instance
Gabriel Genellina yahoo.com.ar> writes:
> But you have to import the io module first, don't you? That's not usually
> necesary for most built in types -- e.g. PyFloat_Check just checks for a
> float object.
Well, in 3.x, file is not longer a builtin type.
--
http://mail.python.org/mailma
nload/releases/3.1/
See PEP 375 for release schedule details:
http://www.python.org/dev/peps/pep-0375/
Enjoy,
-- Benjamin
Benjamin Peterson
benjamin at python.org
Release Manager
(on behalf of the entire python-dev team and 3.1's contributors)
--
http://mail.python.org/mailman/listi
Tzury Bar Yochay gmail.com> writes:
>
> My question is how do I free the memory allocated when I call this
> function using ctypes
The return type of ctypes.create_string_buffer() will call free() when it is
garbage collected.
--
http://mail.python.org/mailman/listinfo/python-list
Gabriel opensuse.org> writes:
> In my understanding this equivalent to:
>
> render('a',
> render('b',
> view(***)))
>
> Is there any way to know, in this case, that 'a' is the 'default' format?
You could set an attribute on the function indicating the default.
--
http://mail.python.or
mrstevegross gmail.com> writes:
>
> Is it generally safe to explicitly import __builtin__ in python? That
> is, my code reads like this:
...
>
> It seems like it should be a safe import, but I just want to make
> sure.
Yes, that's fine. I'm not sure why you don't just use type(), though.
-
samwyse gmail.com> writes:
>
> I have a Python 2.6 program (a code generator, actually) that tries
> several methods of compressing a string and chooses the most compact.
> It then writes out something like this:
> { encoding='bz2_codec', data = '...'}
In 3.x, all codecs which don't directly
DreiJane h-labahn.de> writes:
> Does anybody want to make a PEP from this (i won't do so) ?
I will answer this query with a little interactive prompt session:
$ python3
Python 3.1.1 (r311:74480, Nov 14 2009, 13:56:40)
[GCC 4.3.4] on linux2
Type "help", "copyright", "credits" or "license" for mor
DreiJane h-labahn.de> writes:
>
> Ohhh - that's nice. But no words of that in the library reference
> here:
>
>
http://docs.python.org/3.1/library/stdtypes.html#sequence-types-str-bytes-bytearray-list-tuple-range
That's because it's here:
http://docs.python.org/3.1/library/stdtypes.html#bytes-
e 2.7 documentation can be found at:
http://docs.python.org/2.7
Please consider trying Python 2.7 with your code and reporting any bugs you may
notice to:
http://bugs.python.org
Have fun!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and
My apologies. The whatsnew link is actually
http://docs.python.org/dev/whatsnew/2.7.
2009/12/5 Benjamin Peterson :
> On behalf of the Python development team, I'm pleased to announce the first
> alpha release of Python 2.7.
--
Regards,
Benjamin
--
http://mail.python.org/mailm
Emeka gmail.com> writes:
>
>
> Hello All,
>
> I am finding it difficult getting my head around PyObject_CallObject(x,y). I
need a gentle and thorough introduction to it. I also need examples. Could
someone come to my need?
PyObject_CallFunction is probably easier to use.
http://docs.python.o
Zac Burns gmail.com> writes:
>
>
> Greetings,I'm trying to re-purpose the lib2to3 module and along the way came
up with this pattern:"funcdef<'def' name=NAME parameters ['->' test] ':'
suite=suite>"It seems to have 2 problems:
>
> Single-line defs are not matched. Eg: "def singleLineFunc(): re
Zac Burns gmail.com> writes:
> I'm trying to match any function block,
the two examples were just a part of
my unit tests.
I know. I was just giving an example to indicate why it doesn't work.
find_pattern.py is useful because it gives you a base from which
it's easy to
extrapolate the genera
Ecir Hana gmail.com> writes:
> do I have to
>
> Py_DECREF(function)
>
> or not?
Yes, you still own the reference to the function.
--
http://mail.python.org/mailman/listinfo/python-list
ation can be found at:
http://docs.python.org/2.7
Please consider trying Python 2.7 with your code and reporting any bugs you may
notice to:
http://bugs.python.org
Have fun!
--
Benjamin Peterson
2.7 Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and
Helmut Jarausch skynet.be> writes:
>
> Hi,
>
> I'm trying to build the recent Python-3.2a (SVN).
> It fails in
> Lib/tokenize.py (line 87)
How are you invoking it?
--
http://mail.python.org/mailman/listinfo/python-list
Helmut Jarausch skynet.be> writes:
> As I said, it's 'make' in Python's source directory
> (SVN revision 75309 Last Changed Date: 2009-10-10)
I can't reproduce your failure. What are the exact commands you are using?
--
http://mail.python.org/mailman/listinfo/python-list
home.com> writes:
> I'm trying to build a small program and I get the above error.
> I have had this error popup in the past while trying to build other
> programs. What can I do?
You're python is apparently not finding the standard library.
--
http://mail.python.org/mailman/listinfo/python
Stef Mientki gmail.com> writes:
> Why is the B.py executed twice ?
Because it's executed once as a script and once as a module.
--
http://mail.python.org/mailman/listinfo/python-list
MRAB mrabarnett.plus.com> writes:
> It checks to see whether you're trying to sum strings, so it's already
> treating them as a special case. Why can't it just use str.join
> internally instead in that case instead of raising an exception?
Because that violates explicit is better than implicit.
Alan G Isaac gmail.com> writes:
> So of course join is better, as originally noted,
> but that does not constitute a reason to intentionally
> violate duck typing.
As Stephen pointed out, duck typing is not an absolute.
--
http://mail.python.org/mailman/listinfo/python-list
metal gmail.com> writes:
>
> '11' + '1' == '111' is well known.
>
> but it suprises me '11'+'1' IS '111'.
>
> Why? Obviously they are two differnt object.
>
> Is this special feature of imutable object?
As other posters have pointed out, CPython does cache some small strings. In
this case, h
Farshid gmail.com> writes:
> If I remove the BOM then it works fine. Is this expected behavior or a
> bug in the 2to3 script?
Try the 2to3 distributed in Python 3.1.
--
http://mail.python.org/mailman/listinfo/python-list
lallous lgwm.org> writes:
> Is there is a one line syntax to instantiate an instance?
You can't instantiate an instance; it's already instantiated.
>
> Any other ways than this:
> o = new.classobj('object', (), {})
class x: pass
> How can I, similarly, create an object "o" in C api:
Use PyOb
Zac Burns gmail.com> writes:
> What can I do about this?
Not run it in a thread.
--
http://mail.python.org/mailman/listinfo/python-list
Tim Wintle teamrubber.com> writes:
> Out of interest - has anyone else spotted that the call to
> PyObject_IsTrue in the XXX_JUMP_IF_ blocks performs two unnecessary
> pointer comparisons?
I doubt two pointer comparisons will make much of a difference.
> Would it be worth in-lining the remai
Kyp stsci.edu> writes:
> So the iglob was faster, but accessing the first file took about the
> same time as glob.glob.
That would be because glob is implemented in terms of iglob.
--
http://mail.python.org/mailman/listinfo/python-list
Sean DiZazzo gmail.com> writes:
> Does "magic" really need to be used? Why not just use the revision
> number?
Because magic is easier and otherwise CPython developers would have to rebuild
their pycs everytime their working copy was updated.
--
http://mail.python.org/mailman/listinfo/python-
.7
Please consider trying Python 2.7 with your code and reporting any bugs you may
notice to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
2.7 Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7's contributors)
--
http://mail.python.org/mailman/
Neil Hodgson gmail.com> writes:
>This would damage the usefulness of source control histories (svn
> annotate) as all of the converted lines would show this recent cosmetic
> change rather than the previous change which is likely to be a
> substantive modification.
That's not completely true
Alf P. Steinbach start.no> writes:
> Anyways, I would suggest converting all those tabs to spaces
This has been discussed to death of Python-dev. We use spaces for all new files
and tabs for historical reasons in old files. Mixed ones should be converted one
way or the other.
>
> That's much m
st of changes in 3.1.2rc1 can be found here:
http://svn.python.org/projects/python/tags/r312rc1/Misc/NEWS
The 3.1 documentation can be found at:
http://docs.python.org/3.1
Bugs can always be reported to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
Release Manager
benjam
.7
Please consider trying Python 2.7 with your code and reporting any bugs you may
notice to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
2.7 Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7's contributors)
--
http://mail.python.org/m
list of changes in 3.1.2 can be found here:
http://svn.python.org/projects/python/tags/r312/Misc/NEWS
The 3.1 documentation can be found at:
http://docs.python.org/3.1
Bugs can always be reported to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
Release Manager
benjam
n can be found at:
http://docs.python.org/2.7/
This is a production release. Please report any bugs you find to the bug
tracker:
http://bugs.python.org/
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7.1's co
n.org/download/releases/3.1.3/
A list of changes in 3.1.3 can be found here:
http://svn.python.org/projects/python/tags/r313/Misc/NEWS
The 3.1 documentation can be found at:
http://docs.python.org/3.1
Bugs can always be reported to:
http://bugs.python.org
Enjoy!
--
Benjamin Pet
ion can be found at:
http://docs.python.org/2.7
Please consider trying Python 2.7 with your code and reporting any bugs you may
notice to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
2.7 Release Manager
benjamin at python.org
(on behalf of the entire python-dev team
Longpoke gmail.com> writes:
> So either this test case is wrong to assume the destructor can only be
> called once, or there is a bug in Python?
Destructors can be called more than once in CPython, but other implementations
have proper finalization behavior.
--
http://mail.python.org/mailman
Lothar Werzinger tradescape.biz> writes:
> Wow, that really MAKES a difference! Thanks a lot!
You should also try Python 2.7 or 3.1. We've recently optimized the garabage
collector for situations where many objects are being created.
--
http://mail.python.org/mailman/listinfo/python-list
Artur Siekielski gmail.com> writes:
>
> Of course I was expecting the list [0, 1, 2, 3, 4] as the result. The
> 'x' was bound to the final value of 'range(5)' expression for ALL
> defined functions. Can you explain this? Is this only counterintuitive
> example or an error in CPython?
The former.
lease and is thus not suitable for production use,
we encourage Python application and library developers to test the release with
their code and report any bugs they encounter to:
http://bugs.python.org/
2.7 documentation can be found at:
http://docs.python.org/2.7/
Enjoy!
--
Ben
Iuri gmail.com> writes:
> Any ideas about what is happening?
Until Python 2.7/3.2, compile() does't like sources which don't end in a
newline.
--
http://mail.python.org/mailman/listinfo/python-list
Paul McGuire austin.rr.com> writes:
> In this section of code, instring is a string, loc is an int, and wt
> is a string. Any clues why instring[loc] would be evaluating as int?
> (I am unfortunately dependent on the kindness of strangers when it
> comes to testing my Python 3 code, as I don't ha
s few bumps
as possible.
2.7 documentation can be found at:
http://docs.python.org/2.7/
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7's contributors)
--
http://mail.python.org/mailman/listinfo/python-list
ant uklinux.net> writes:
> PyQt is tied to one platform.
What do you mean one platform?
--
http://mail.python.org/mailman/listinfo/python-list
helps ensure that those upgrading to Python 2.7 will encounter as few bumps
as possible.
2.7 documentation can be found at:
http://docs.python.org/2.7/
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7's contributors
GrayShark gmail.com> writes:
> Sorry, I meant "from string import lowercase, uppercase"
Technically, you should use ascii_lowercase and ascii_uppercase, though I don't
know if that's the cause of pylint's complaints.
--
http://mail.python.org/mailman/listinfo/python-list
http://bugs.python.org/
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 2.7's contributors)
--
http://mail.python.org/mailman/listinfo/python-list
2010/7/4 Benjamin Peterson :
> On behalf of the Python development team, I'm jocund to announce the second
> release candidate of Python 2.7.
Arg!!! This should, of course, be "final release".
--
Regards,
Benjamin
--
http://mail.python.org/mailman/listinfo/python-list
Hey, Georg! Congrats on your first release!
2010/8/1 Georg Brandl :
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On behalf of the Python development team, I'm happy to announce the
> first alpha preview release of Python 3.2.
>
> Python 3.2 is a continuation of the efforts to improve and
Chris Withers simplistix.co.uk> writes:
> When was it introduced?
It depends on how the exception was raised.
--
http://mail.python.org/mailman/listinfo/python-list
pixar.com> writes:
> What's the best way to handle this?
#!/usr/bin/env python
--
http://mail.python.org/mailman/listinfo/python-list
n.org/download/releases/3.1/
See PEP 375 for release schedule details:
http://www.python.org/dev/peps/pep-0375/
Enjoy,
-- Benjamin
Benjamin Peterson
benjamin at python.org
Release Manager
(on behalf of the entire python-dev team and 3.1's contributors)
--
http://mail.python.org/mailma
Gaudha gmail.com> writes:
>
> Hey gentlemen,
>
> I wanna make all the strings in my code unicode strings. How to do it
> without giving unicode switch 'u' before every string?
Or the -U flag, but that's probably a bad idea.
--
http://mail.python.org/mailman/listinfo/python-list
Gaudha gmail.com> writes:
> And Peter, I tried importing the __future__ module. It's also not
> working...
How so?
--
http://mail.python.org/mailman/listinfo/python-list
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 3.1's contributors)
--
http://mail.python.org/mailman/listinfo/python-list
Nobody nowhere.com> writes:
> All in all, Python 3.x still has a long way to go before it will be
> suitable for real-world use.
Such as?
--
http://mail.python.org/mailman/listinfo/python-list
Nobody nowhere.com> writes:
>
> Such as not trying to shoe-horn every byte string it encounters into
> Unicode. Some of them really are *just* byte strings.
You're certainly allowed to convert them back to byte strings if you want.
--
http://mail.python.org/mailman/listinfo/python-list
Paul Moore gmail.com> writes:
> The "buffer" attribute doesn't seem to be documented in the docs for
> the io module. I'm guessing that the TextIOBase class should have a
> note that you get at the buffer through the "buffer" attribute?
Good point. I've now documented it, and the "raw" attribut
Aahz pythoncraft.com> writes:
> Yes, but do you get back the original byte strings? Maybe I'm missing
> something, but my impression is that this is still an issue for the email
> module as well as command-line arguments and environment variables.
The email module is, yes, broken. You can recove
Nobody nowhere.com> writes:
>
> On Sun, 28 Jun 2009 19:21:49 +, Benjamin Peterson wrote:
>
> >> Yes, but do you get back the original byte strings? Maybe I'm missing
> >> something, but my impression is that this is still an issue for the email
kio gmail.com> writes:
>
> Hi,
>
> I'm studying the CPython source code. I don’t quite understand why
> they’re using PyObject_VAR_HEAD to define struct like PyListObject. To
> define such kind of struct, could I use _PyObject_HEAD_EXTRA as a
> header and add "items" pointer and "allocated" cou
jayshree gmail.com> writes:
>
> I have the key pair generated by the GPG. Now I want to use the public
> key for encrypting the password. I need to make a function in Python.
> Can somebody guide me on how to do this …
PyCrypto
--
http://mail.python.org/mailman/listinfo/python-list
someone googlemail.com> writes:
>
> Hello,
>
> how can I replace '—' sign from string? Or do split at that character?
> Getting unicode error if I try to do it:
>
> UnicodeDecodeError: 'ascii' codec can't decode byte 0x97 in position
> 1: ordinal not in range(128)
Please paste your code. I s
ryles gmail.com> writes:
>
> This reminds me. Would anyone object to adding a sentence to
> http://docs.python.org/library/stringio.html#module-cStringIO just to
> mention that attributes cannot be added to a cStringIO, like such:
That's true of almost all types that are implemented in C.
-
http://www.python.org/download/releases/3.1/
The 3.1 documentation can be found at:
http://docs.python.org/3.1
Bugs can always be reported to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at python.org
(on behalf of the entire python-dev team and 3.
oming days.
To download Python 3.1.1 visit:
http://www.python.org/download/releases/3.1.1/
The 3.1 documentation can be found at:
http://docs.python.org/3.1
Bugs can always be reported to:
http://bugs.python.org
Enjoy!
--
Benjamin Peterson
Release Manager
benjamin at pytho
Simon Forman gmail.com> writes:
> No. You would have to modify and recompile the interpreter. This is
> not exactly trivial, see "How to Change Python's Grammar"
> http://www.python.org/dev/peps/pep-0306/
And even that's incorrect. You'd have to modify the tokenizer.
--
http://mail.python.o
Derek Martin pizzashack.org> writes:
> More than flushing out
> bugs, it will *cause* them in ubiquity, requiring likely terabytes of
> code to be poured over and fixed.
2to3, however, can fix it for you extreme easily.
--
http://mail.python.org/mailman/listinfo/python-list
101 - 200 of 213 matches
Mail list logo