File: python_types.go

package info (click to toggle)
golang-github-hydrogen18-stalecucumber 0.0~git20180226.6de214d-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 280 kB
  • sloc: python: 71; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package stalecucumber

/*
This type is used internally to represent a concept known as a mark
on the Pickle Machine's stack. Oddly formed pickled data could return
this value as the result of Unpickle. In normal usage this type
is needed only internally.
*/
type PickleMark struct{}

func (_ PickleMark) String() string {
	return "PickleMachine Mark"
}

/*
This type is used to represent the Python object "None"
*/
type PickleNone struct{}

func (_ PickleNone) String() string {
	return "Python None"
}