230 if opts.pop('-h', None) is not None: |
230 if opts.pop('-h', None) is not None: |
231 print(usage) |
231 print(usage) |
232 return 0 |
232 return 0 |
233 |
233 |
234 if opts.pop('-V', None) is not None: |
234 if opts.pop('-V', None) is not None: |
235 print('Pygments version %s, (c) 2006-2020 by Georg Brandl.' % __version__) |
235 print('Pygments version %s, (c) 2006-2021 by Georg Brandl.' % __version__) |
236 return 0 |
236 return 0 |
237 |
237 |
238 # handle ``pygmentize -L`` |
238 # handle ``pygmentize -L`` |
239 L_opt = opts.pop('-L', None) |
239 L_opt = opts.pop('-L', None) |
240 if L_opt is not None: |
240 if L_opt is not None: |