X Tutup
Skip to content

Commit c1d2e14

Browse files
committed
Merge in bugfixes
2 parents 1b3fc43 + 32c3160 commit c1d2e14

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

bpython/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import os.path
2424

2525
__version__ = 'mercurial'
26+
>>>>>>> other
2627
package_dir = os.path.abspath(os.path.dirname(__file__))
2728

2829

bpython/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def parse(args, extras=None, ignore_stdin=False):
8383
if options.version:
8484
print 'bpython version', __version__,
8585
print 'on top of Python', sys.version.split()[0]
86-
print ('(C) 2008-2010 Bob Farrell, Andreas Stuehrk et al. '
86+
print ('(C) 2008-2011 Bob Farrell, Andreas Stuehrk et al. '
8787
'See AUTHORS for detail.')
8888
raise SystemExit
8989

bpython/gtk_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2010 the bpython authors.
3+
# Copyright (c) 2009-2011 the bpython authors.
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

bpython/importcompletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2010 Andreas Stuehrk
3+
# Copyright (c) 2009-2011 Andreas Stuehrk
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

bpython/inspection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2010 the bpython authors.
3+
# Copyright (c) 2009-2011 the bpython authors.
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

bpython/pager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2010 Andreas Stuehrk
3+
# Copyright (c) 2009-2011 Andreas Stuehrk
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

bpython/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2010 the bpython authors.
3+
# Copyright (c) 2009-2011 the bpython authors.
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

bpython/urwid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# The MIT License
44
#
5-
# Copyright (c) 2010 Marien Zwart
5+
# Copyright (c) 2010-2011 Marien Zwart
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)
X Tutup