Skip to content

Commit

Permalink
Merge pull request #23 from MKuranowski/pure-c-rewrite
Browse files Browse the repository at this point in the history
Rewrite parser in pure C
  • Loading branch information
MKuranowski authored Feb 21, 2024
2 parents b980b3e + 587045a commit 572ae69
Show file tree
Hide file tree
Showing 18 changed files with 1,384 additions and 13,707 deletions.
6 changes: 6 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
BasedOnStyle: Google
ColumnLimit: 99
IndentWidth: 4
DerivePointerAlignment: false
PointerAlignment: Left
QualifierAlignment: Right
4 changes: 2 additions & 2 deletions aiocsv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
__title__ = "aiocsv"
__description__ = "Asynchronous CSV reading/writing"
__version__ = "1.2.5"
__version__ = "1.3.0-pre2"

__url__ = "https://github.com/MKuranowski/aiocsv"
__author__ = "Mikołaj Kuranowski"
__email__ = "".join(chr(i) for i in [109, 107, 117, 114, 97, 110, 111, 119, 115, 107, 105,
64, 103, 109, 97, 105, 108, 46, 99, 111, 109])

__copyright__ = "© Copyright 2020-2023 Mikołaj Kuranowski"
__copyright__ = "© Copyright 2020-2024 Mikołaj Kuranowski"
__license__ = "MIT"

from .readers import AsyncReader, AsyncDictReader
Expand Down
Loading

0 comments on commit 572ae69

Please sign in to comment.