]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4034/python/post
Merge branch 'kk/maint-prefix-in-config-mak'
[thirdparty/git.git] / t / t4034 / python / post
CommitLineData
8d96e728
TR
1print "Hello World?\n"; print
2(1) (-1e10) (0xabcdef) u'y'
3[x] x->y x.y
4!x ~x x++ x-- x*y x&y
5x*y x/y x%y
6x+y x-y
7x<<y x>>y
8x<y x<=y x>y x>=y
9x==y x!=y
10x&y
11x^y
12x|y
13x&&y
14x||y
15x?y:z
16x=y x+=y x-=y x*=y x/=y x%=y x<<=y x>>=y x&=y x^=y x|=y
17x,y