[Python-Dev] Summary of Python tracker Issues

2008-08-08 Thread Python tracker

ACTIVITY SUMMARY (08/01/08 - 08/08/08)
Python tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue 
number.  Do NOT respond to this message.


 1943 open (+19) / 13408 closed (+27) / 15351 total (+46)

Open issues with patches:   611

Average duration of open issues: 722 days.
Median duration of open issues: 1632 days.

Open Issues Breakdown
   open  1931 (+19)
pending12 ( +0)

Issues Created Or Reopened (46)
___

sys.stdin.read won't return on EOF   08/01/08
CLOSED http://bugs.python.org/issue3483created  benjamin.peterson 
   

Sphinx tests fail because of missing dir 08/01/08
CLOSED http://bugs.python.org/issue3484created  cakebread 
   

os.path.normcase documentation/behaviour unclear on Mac OS X 08/01/08
   http://bugs.python.org/issue3485created  ijmorlan  
   

bytes.join does not accept a sequence of bytearrays  08/01/08
   http://bugs.python.org/issue3486created  pitrou
   

sre "bytecode" verifier  08/01/08
CLOSED http://bugs.python.org/issue3487created  gvanrossum
   patch, patch

Provide compress/uncompress functions on the gzip module 08/01/08
   http://bugs.python.org/issue3488created  pythonhacker  
   patch   

add rotate{left,right} methods to bytearray  08/01/08
   http://bugs.python.org/issue3489created  pitrou
   

Example Code Error in Tutorial Documentation 08/02/08
CLOSED http://bugs.python.org/issue3490created  yoshokun  
   

compile error fixing (_multiprocessing, windows) 08/02/08
CLOSED http://bugs.python.org/issue3491created  ocean-city
   patch, patch

Zlib compress/decompress functions returning bytearray   08/02/08
   http://bugs.python.org/issue3492created  pythonhacker  
   patch   

No Backslash (\) in IDLE 1.2.2   08/02/08
   http://bugs.python.org/issue3493created  Marc67
   

"[Errno 11] Resource temporarily unavailable" while using tracin 08/02/08
   http://bugs.python.org/issue3494created  fabioz
   

site module doc typo 08/03/08
CLOSED http://bugs.python.org/issue3495created  ijstokes  
   

distutils fails with mingw binutils 2.18.50.20080109 08/03/08
   http://bugs.python.org/issue3496created  pmoore
   patch   

a bug in the interpreter?08/03/08
CLOSED http://bugs.python.org/issue3497created  bad   
   

mod_cls  08/04/08
CLOSED http://bugs.python.org/issue3498created  schuppenies   
   patch   

Python 2.6 requires pre-installed Python to build08/04/08
   http://bugs.python.org/issue3499created  lemburg   
   

unbound methods of different classes compare equal   08/04/08
   http://bugs.python.org/issue3500created  exarkun   
   

expm1 missing08/04/08
   http://bugs.python.org/issue3501created  ms
   

Inconsistency between string.letters and defau

[Python-Dev] Python Virtual Machine Architecture

2008-08-08 Thread Jon Stritar
I'm trying to understand the architecture of the core Python interpreter and
virtual machine, but I've been having trouble finding the documentation. It
looks like most of the docs are for either writing Python programs or
extending / writing modules. Is there any documentation (or papers) geared
towards understanding the core? The closest I could find was this,

http://docs.python.org/api/api.html

but that is still geared towards extending it with C modules. I guess I'm
more interested in python's security architecture, but anything about the VM
or interpreter would be great!

Thanks,

--Jon
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python Virtual Machine Architecture

2008-08-08 Thread Leo Soto M.
On Fri, Aug 8, 2008 at 4:17 PM, Jon Stritar <[EMAIL PROTECTED]> wrote:
> I'm trying to understand the architecture of the core Python interpreter and
> virtual machine, but I've been having trouble finding the documentation. It
> looks like most of the docs are for either writing Python programs or
> extending / writing modules. Is there any documentation (or papers) geared
> towards understanding the core?

Maybe ?
-- 
Leo Soto M.
http://blog.leosoto.com
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] String concatenation

2008-08-08 Thread Barry Scott


On Aug 3, 2008, at 19:12, Stavros Korokithakis wrote:

Hmm, thanks, although I don't see why it was rejected, since it  
seems to me that by using the addition operator or triple-quoting  
all the use cases would become clearer and not significantly harder  
to write, while the (often silent) errors would not happen any more.


I use this feature all the time in preference to triple quote strings  
to allow the indenting structure to be preserved.


def I_like_this():
s = ("a multi line\n"
   "that keeps the indent of the function")
return

def I_do_not_like_this():
s = '''a multi line
that break the indent of the function"
return


Barry

___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com