about python advanced/new features documentation

2004-12-04 Thread Kl
Hi, python is really easy to learn in my opinion. There are loads of
tutorials/books on the web talking about the most common python features.
The problem comes when they add something new to the language or you want to
use advanced features. Since python is still evolving its difficult to find
good documentation on these new features/language changes.
Where can i find always up-to-date documentation about python? Unfortunately
the official tutorial and books become obsolete really fast.

Thanks.


-- 
http://mail.python.org/mailman/listinfo/python-list


Tkinter scrollbar background color doesn't work

2010-04-19 Thread KL
Tkinter scrollbar widget's "background" and "relief" options seem not
work.

The below is the codes I tried and the python/tk information:
===

ActivePython 2.6.4.8 (ActiveState Software Inc.) based on
Python 2.6.4 (r264:75706, Nov  3 2009, 13:23:17) [MSC v.1500 32 bit
(Intel)] on
win32
>>> from Tkinter import *
>>> r=Tk()
>>> s=Scrollbar(r,bg="#000")
>>> s.grid()
>>> s['activebackground'] = "#000"
>>> s['relief'] = "sunken"
>>>
>>> TkVersion
8.5
>>> import sys
>>> sys.version
'2.6.4 (r264:75706, Nov  3 2009, 13:23:17) [MSC v.1500 32 bit
(Intel)]'
>>>
-- 
http://mail.python.org/mailman/listinfo/python-list