Browse Source

Deleting obsolet # -*- coding: utf-8 -*- lines

C.f: #65
pull/71/head
Louis 10 years ago
parent
commit
176c10fd05
  1. 2
      patacrep/authors.py
  2. 2
      patacrep/build.py
  3. 3
      patacrep/content/__init__.py
  4. 3
      patacrep/content/cwd.py
  5. 2
      patacrep/content/include.py
  6. 3
      patacrep/content/section.py
  7. 3
      patacrep/content/song.py
  8. 3
      patacrep/content/songsection.py
  9. 3
      patacrep/content/sorted.py
  10. 3
      patacrep/content/tex.py
  11. 2
      patacrep/encoding.py
  12. 2
      patacrep/errors.py
  13. 1
      patacrep/files.py
  14. 2
      patacrep/index.py
  15. 2
      patacrep/latex/__init__.py
  16. 1
      patacrep/latex/ast.py
  17. 1
      patacrep/latex/detex.py
  18. 1
      patacrep/latex/lexer.py
  19. 3
      patacrep/songbook.py
  20. 2
      patacrep/songs/__init__.py
  21. 2
      patacrep/songs/tex.py
  22. 1
      patacrep/templates.py

2
patacrep/authors.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Authors string management.""" """Authors string management."""
import logging import logging

2
patacrep/build.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Build a songbook, according to parameters found in a .sb file.""" """Build a songbook, according to parameters found in a .sb file."""
import codecs import codecs

3
patacrep/content/__init__.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Content plugin management. """Content plugin management.
Content that can be included in a songbook is controlled by plugins. From the Content that can be included in a songbook is controlled by plugins. From the

3
patacrep/content/cwd.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Change base directory before importing songs.""" """Change base directory before importing songs."""
from patacrep.content import process_content from patacrep.content import process_content

2
patacrep/content/include.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Include an external list of songs """Include an external list of songs
This plugin provides keyword 'include', used to include an external list of This plugin provides keyword 'include', used to include an external list of

3
patacrep/content/section.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Allow LaTeX sections (starred or not) as content of a songbook.""" """Allow LaTeX sections (starred or not) as content of a songbook."""
from patacrep.content import Content, ContentError from patacrep.content import Content, ContentError

3
patacrep/content/song.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Plugin to include songs to the songbook.""" """Plugin to include songs to the songbook."""
import glob import glob

3
patacrep/content/songsection.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Allow 'songchapter' and 'songsection' as content of a songbook.""" """Allow 'songchapter' and 'songsection' as content of a songbook."""
from patacrep.content import Content, ContentError from patacrep.content import Content, ContentError

3
patacrep/content/sorted.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Sorted list of songs. """Sorted list of songs.
This plugin provides keyword 'sorted', used to include a sorted list of songs This plugin provides keyword 'sorted', used to include a sorted list of songs

3
patacrep/content/tex.py

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Include LaTeX raw code in the songbook.""" """Include LaTeX raw code in the songbook."""
import logging import logging

2
patacrep/encoding.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Dealing with encoding problems.""" """Dealing with encoding problems."""
import codecs import codecs

2
patacrep/errors.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Songbook exceptions and errors.""" """Songbook exceptions and errors."""
class SongbookError(Exception): class SongbookError(Exception):

1
patacrep/files.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""File system utilities.""" """File system utilities."""
from contextlib import contextmanager from contextlib import contextmanager

2
patacrep/index.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Manage indexes. """Manage indexes.
Generate indexes files for the songbook compilation. This is a replacement for Generate indexes files for the songbook compilation. This is a replacement for

2
patacrep/latex/__init__.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Very simple LaTeX parser """Very simple LaTeX parser
This module uses an LALR parser to try to parse LaTeX code. LaTeX language This module uses an LALR parser to try to parse LaTeX code. LaTeX language

1
patacrep/latex/ast.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Abstract Syntax Tree for LaTeX code.""" """Abstract Syntax Tree for LaTeX code."""
# pylint: disable=too-few-public-methods # pylint: disable=too-few-public-methods

1
patacrep/latex/detex.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Render `very simple` TeX commands in a simple TeX code.""" """Render `very simple` TeX commands in a simple TeX code."""
import logging import logging

1
patacrep/latex/lexer.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Very simple LaTeX lexer.""" """Very simple LaTeX lexer."""
import logging import logging

3
patacrep/songbook.py

@ -1,6 +1,3 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
"""Command line tool to compile songbooks using the songbook library.""" """Command line tool to compile songbooks using the songbook library."""
import argparse import argparse

2
patacrep/songs/__init__.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Song management.""" """Song management."""
import errno import errno

2
patacrep/songs/tex.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Very simple LaTeX parsing.""" """Very simple LaTeX parsing."""
import os import os

1
patacrep/templates.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Template for .tex generation settings and utilities""" """Template for .tex generation settings and utilities"""
from jinja2 import Environment, FileSystemLoader, ChoiceLoader, \ from jinja2 import Environment, FileSystemLoader, ChoiceLoader, \

Loading…
Cancel
Save