When I print the bibliography with a BOOK entry using the PART field, biblatex prints white space followed by a period before the PART field is printed. Is this a bug, or am I missing something?
\documentclass{article}
\usepackage{csquotes}
\usepackage[
bibstyle = authoryear,
citestyle = authoryear-comp,
sorting = nyt,
sortcites = false,
language = american,
abbreviate = false,
backend = biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@BOOK{smith1965,
AUTHOR = "John Smith",
LOCATION = "London",
NUMBER = "3",
PART = "Part one",
PUBLISHER = "Johnson Press",
SERIES = "Classic books",
TITLE = "A good book",
YEAR = "1965"}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\noindent
Text \parencite{smith1965}.
\printbibliography
\end{document}

volume="3",PART = "1",then you'll get in the output3.1– Herbert Nov 19 '12 at 20:213.1, butvolumeis for multi-volume books, and not for specifying the volume number in a series. For that one should usenumber. Cf. thebiblatexmanual. – Sverre Nov 20 '12 at 13:31