_csv

package
v0.12.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 15, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Package _csv is the gopy port of CPython's _csv built-in module. It exposes the CSV reader/writer infrastructure backed by Go's encoding/csv package. Dialect management, quoting constants, and the reader/writer types mirror the CPython surface defined in Modules/_csv.c.

CPython: Modules/_csv.c:1 _csv module

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dialect

type Dialect struct {
	objects.Header
	// contains filtered or unexported fields
}

Dialect holds the formatting parameters for a CSV reader or writer. CPython: Modules/_csv.c:106 DialectObj

type Reader

type Reader struct {
	objects.Header
	// contains filtered or unexported fields
}

Reader is the Python csv.reader object backed by encoding/csv.

CPython: Modules/_csv.c:795 ReaderObj

type Writer

type Writer struct {
	objects.Header
	// contains filtered or unexported fields
}

Writer is the Python csv.writer object backed by encoding/csv.

CPython: Modules/_csv.c:958 WriterObj

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL