mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
13 lines
235 B
Python
13 lines
235 B
Python
"""Skeleton for 'csv' stdlib module."""
|
|
|
|
import _csv
|
|
|
|
|
|
def register_dialect(name, dialect=None, **fmtparams):
|
|
"""Associate dialect with name.
|
|
|
|
:type name: string
|
|
:type dialect: _csv.Dialect
|
|
:rtype: None
|
|
"""
|
|
pass |