This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A(): | |
x = 1 | |
a = A() | |
b = A() | |
b.x = 11 | |
a.x # ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TALK_TYPE = ( | |
('t_30', 'Talk (30 mins)'), | |
('t_45', 'Talk (45 mins)'), | |
('t_60', 'Talk (60 mins)'), | |
('i_60', 'Interactive (60 mins)'), | |
('r_180', 'Training (180 mins)'), | |
('p_180', 'Poster session (180 mins)'), | |
('p_60', 'Panel (60 mins)'), | |
('p_90', 'Panel (90 mins)'), | |
('h_180', 'Help desk (180 mins)'), |
NewerOlder